Files
c3c/test/test_suite7/statements/foreach_parse_error.c3
2025-02-23 13:53:04 +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.
}