Skip to main content
Product
Technology
Discover
Solutions
Docs
Downloads
Pricing
Search
/
Sign in
Sign up
brintos
/
llvm-project-archived
public
Read only
Watch
0
Star
0
Fork
0
Files
Commits
Issues
2
Discussions
0
Wiki
0
Insights
llvm-project-archived
/
clang
/
test
/
Import
/
struct-in-namespace
/
Inputs
/
N1.cpp
Text
·
91 B
·
ddb67a5
Raw
12 lines · cpp
1
namespace N {
2
struct S {
3
int a;
4
};
5
}
6
7
namespace N {
8
struct T {
9
int b;
10
};
11
}
12