Fix the clang-wpa example.
[clang.git] / test / CodeCompletion / nested-name-specifier.cpp
blobe09a14b4cb465c23163012ed2fffaded89610b0d
1 namespace N {
2 struct A { };
3 namespace M {
4 struct C { };
5 };
8 namespace N {
9 struct B { };
12 N::
13 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:12:4 %s -o - | FileCheck -check-prefix=CC1 %s
14 // CHECK-CC1: A
15 // CHECK-CC1: B
16 // CHECK-CC1: M