Files
c3c/test/test_suite/arrays/infer_previous_err.c3t

15 lines
223 B
Plaintext

// #target: macos-x64
module test;
char[1][*] a = { [0] = { [0] = 1 } };
char[1][1] b = { [0] = { [0] = 1 } };
char[2][*] c = { [0] = { [0] = 1 } };
char[4][1] d = { [0] = { [0] = 1 } };
fn void main()
{
a;
b;
c;
d;
}