Files
c3c/test/test_suite/subarrays/sub_array_init.c3
2021-11-16 17:46:44 +01:00

8 lines
116 B
C

fn void test2()
{
int[2] a = { 1, 2 };
int[2] b = 30; // #error: 'int' into 'int[2]'
int[2] c = a;
}