c2lang / c2compiler

the c2 programming language
c2lang.org
Apache License 2.0
704 stars 49 forks source link

Multi-dimensional array inits don't use correct size (num columns vs rows etc) #108

Closed bvdberg closed 4 years ago

bvdberg commented 5 years ago

i32 a[3][4] = {
{0, 1, 2, 3} , / initializers for row indexed by 0 / {4, 5, 6, 7} , / initializers for row indexed by 1 / {8, 9, 10, 11} / initializers for row indexed by 2 / }; should work

bvdberg commented 4 years ago

fixed