[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeCompletion / nested-name-specifier.cpp
blobbff8d9441efb6079a6b6d9f34add24ed2255e814
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:%(line-1):4 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
14 // CHECK-CC1: A
15 // CHECK-CC1: B
16 // CHECK-CC1: M