summaryrefslogtreecommitdiffstats
path: root/test/CodeCompletion/nested-name-specifier.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeCompletion/nested-name-specifier.cpp')
-rw-r--r--test/CodeCompletion/nested-name-specifier.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/CodeCompletion/nested-name-specifier.cpp b/test/CodeCompletion/nested-name-specifier.cpp
new file mode 100644
index 0000000..0cc5a19
--- /dev/null
+++ b/test/CodeCompletion/nested-name-specifier.cpp
@@ -0,0 +1,18 @@
+namespace N {
+ struct A { };
+ namespace M {
+ struct C { };
+ };
+}
+
+namespace N {
+ struct B { };
+}
+
+N::
+// RUN: clang-cc -fsyntax-only -code-completion-at=%s:12:4 %s -o - | FileCheck -check-prefix=CC1 %s &&
+// CHECK-CC1: A : 0
+// CHECK-CC1: B : 0
+// CHECK-CC1: M : 0
+// RUN: true
+
OpenPOWER on IntegriCloud