• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1struct S { int s; };
2
3int main()
4{
5    struct S t;
6    return t.s;
7}
8