You've already forked object-testfiles
mirror of
https://github.com/encounter/object-testfiles.git
synced 2026-03-30 11:32:26 -07:00
26f9fc09c3
ELF/PE/Wasm
13 lines
114 B
C
13 lines
114 B
C
struct s {
|
|
int x;
|
|
char y;
|
|
} s = { 1, 2 };
|
|
|
|
int foo() {
|
|
return s.x;
|
|
}
|
|
|
|
int bar() {
|
|
return foo();
|
|
}
|