Files
c3c/test/test_suite/slices/sub_array_init.c3
2024-11-21 11:30:53 +01:00

8 lines
105 B
Plaintext

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