Files
c3c/test/test_suite/subarrays/sub_array_init.c3
Christoffer Lerno f46697bc54 Updated casts (#684)
Cast code rework. Remove llvm_set_bool and friends.
2022-12-27 14:16:47 +01:00

8 lines
105 B
C

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