forked from OSchip/llvm-project
14 lines
133 B
C
14 lines
133 B
C
|
extern struct Y {
|
||
|
int n;
|
||
|
float f;
|
||
|
} y1;
|
||
|
enum E { e1 };
|
||
|
|
||
|
struct X {
|
||
|
int n;
|
||
|
} x1;
|
||
|
|
||
|
int f() {
|
||
|
return y1.n + e1 + y1.f + x1.n;
|
||
|
}
|