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