summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeCompletion/nested-name-specifier.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CodeCompletion/nested-name-specifier.cpp')
-rw-r--r--clang/test/CodeCompletion/nested-name-specifier.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/clang/test/CodeCompletion/nested-name-specifier.cpp b/clang/test/CodeCompletion/nested-name-specifier.cpp
new file mode 100644
index 00000000000..f418164b024
--- /dev/null
+++ b/clang/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
OpenPOWER on IntegriCloud