From fb9dde7040988e5b5f580e74ebbeabf0fbc70651 Mon Sep 17 00:00:00 2001 From: Ilya Biryukov Date: Mon, 14 May 2018 13:50:36 +0000 Subject: [CodeComplete] Provide completion in decls even for incomplete types Summary: This change fixes lack of completions in the following case ('^'designates completion points) : void f(^); struct Incomplete; Incomplete g(^); Reviewers: bkramer, aaron.ballman, sammccall Reviewed By: aaron.ballman Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D46639 llvm-svn: 332244 --- clang/test/CodeCompletion/incomplete-ret-type.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 clang/test/CodeCompletion/incomplete-ret-type.cpp (limited to 'clang/test') diff --git a/clang/test/CodeCompletion/incomplete-ret-type.cpp b/clang/test/CodeCompletion/incomplete-ret-type.cpp new file mode 100644 index 00000000000..669105e1416 --- /dev/null +++ b/clang/test/CodeCompletion/incomplete-ret-type.cpp @@ -0,0 +1,13 @@ +struct IncompleteType; +int int_value; +typedef int int_typedef; + +void f(in); +IncompleteType g(in); +// Completing should produce results even if types are incomplete. +// Note that clang is expected to return an error code since 'in' does not resolve. +// RUN: not %clang_cc1 -fsyntax-only -code-completion-at=%s:5:9 %s -o - | FileCheck %s +// RUN: not %clang_cc1 -fsyntax-only -code-completion-at=%s:6:19 %s -o - | FileCheck %s +// CHECK: COMPLETION: int{{$}} +// CHECK: COMPLETION: int_typedef +// CHECK: COMPLETION: int_value -- cgit v1.2.3