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
/
commands
/
frame
/
diagnose
/
array
/
main.c
Text
·
89 B
·
95c6515
Raw
10 lines · c
1
struct Foo {
2
int b;
3
int c;
4
};
5
6
int main() {
7
struct Foo *a = 0;
8
return a[10].c;
9
}
10