Files
c3c/test/test_suite14/arrays/inferred_array_err2.c3
2023-01-11 18:00:08 +01:00

5 lines
132 B
C

fn void test()
{
int[3] z;
(int[*])(z); // #error: Inferred array types can only be used in declarations with initializers
}