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

5 lines
185 B
Plaintext

fn void test9()
{
foreach (int a : { [2] = 1 }) foo();
foreach (int a : { [2] = 2, 1 }) foo(); // #error: Normal initialization cannot be mixed with designated initialization.
}