7 lines
77 B
C++
7 lines
77 B
C++
struct DummyStruct {
|
|
int i;
|
|
};
|
|
|
|
DummyStruct s;
|
|
|
|
int main() { return s.i; }
|