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
/
lldb
/
test
/
API
/
lang
/
cpp
/
frame-var-anon-unions
/
main.cpp
Text
·
108 B
·
976d3f5
Raw
10 lines · cpp
1
int main() {
2
union {
3
int i;
4
char c;
5
};
6
i = 0xFFFFFF00;
7
c = 'A';
8
return c; // break here
9
}
10