1 struct DummyStruct {
2   int i;
3 };
4 
5 DummyStruct s;
6 
main()7 int main() { return s.i; }
8