xref
: /
llvm-project
/
clang
/
test
/
Import
/
struct-in-namespace
/
Inputs
/
N1.cpp
(revision b7160ca466175d21a01de50894df47f7c4612e67)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
namespace
N
{
2
struct
S
{
3
int
a
;
4
};
5
}
6
7
namespace
N
{
8
struct
T
{
9
int
b
;
10
};
11
}
12