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
/
llvm
/
test
/
TableGen
/
nested_ifdef.inc
Text
·
91 B
·
652ff69
Raw
11 lines · plain
1
#ifndef NESTED_IFDEF
2
#define NESTED_IFDEF
3
4
def foo;
5
6
#ifndef HAHA
7
def haha;
8
#endif
9
10
#endif
11