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
/
PCH
/
Inputs
/
chain-macro-override2.h
Text
·
82 B
·
9da208c
Raw
9 lines · c
1
#define f() g()
2
#undef g
3
#undef h
4
#define h() g()
5
int x;
6
#undef h2
7
8
int h3(void);
9