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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
Index
/
USR
/
decl-context.cpp
blob
a57137a5c89b5fda8c6e3320db255b266533149a
1
// RUN: c-index-test core -print-source-symbols -- -std=c++20 %s | FileCheck %s
2
3
namespace
ns
{
4
namespace
{
5
struct
Foo
{};
6
// CHECK: [[@LINE-1]]:8 | struct/C | Foo | c:decl-context.cpp@N@ns@aN@S@Foo
7
}
8
}
9
namespace
ns2
{
10
namespace
{
11
struct
Foo
{};
12
// CHECK: [[@LINE-1]]:8 | struct/C | Foo | c:decl-context.cpp@N@ns2@aN@S@Foo
13
}
14
}