1 2 3 4 5 6 7 8 9 10
Invalid Code struct Foo { int i; } void main () { const Foo[] foo = { { 23 } }; foo[0].i = 42; }