0231-init.c (93B)
1 struct a { 2 int a; 3 }; 4 5 int main() 6 { 7 struct a a; 8 struct a aa = a; 9 10 return 0; 11 }