diff options
Diffstat (limited to 'test/CodeCompletion/nested-name-specifier.cpp')
-rw-r--r-- | test/CodeCompletion/nested-name-specifier.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/CodeCompletion/nested-name-specifier.cpp b/test/CodeCompletion/nested-name-specifier.cpp new file mode 100644 index 0000000000..f418164b02 --- /dev/null +++ b/test/CodeCompletion/nested-name-specifier.cpp @@ -0,0 +1,19 @@ +// RUN: clang-cc -fsyntax-only -code-completion-dump=1 %s -o - | FileCheck -check-prefix=CC1 %s && +// RUN: true + +namespace N { + struct A { }; + namespace M { + struct C { }; + }; +} + +namespace N { + struct B { }; +} + +// CHECK-CC1: A : 0 +// CHECK-CC1: B : 0 +// CHECK-CC1: M : 0 +// CHECK-CC1: template : 0 +N::
\ No newline at end of file |