repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
CodeCompletion
/
nested-name-specifier.cpp
blob
bff8d9441efb6079a6b6d9f34add24ed2255e814
1
namespace
N
{
2
struct
A
{ };
3
namespace
M
{
4
struct
C
{ };
5
};
6
}
7
8
namespace
N
{
9
struct
B
{ };
10
}
11
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
17