Files
c3c/test/test_suite/arrays/array_of_inferred_array.c3

8 lines
127 B
Plaintext

import std;
macro void test(int[2][6] a)
{
}
fn void main()
{
test({ { 1, 2 } }); // #error: Too few elements in initializer
}