Files
c3c/test/test_suite/statements/foreach_r_errors.c3
2025-04-29 11:53:32 +02:00

55 lines
1.1 KiB
Plaintext

module test;
extern fn void foo();
int[3] z;
fn void test1()
{
int x;
foreach_r (a : x) // #error: It's not possible to enumerate an expression of type 'int'.
{
foo();
}
}
fn void test2()
{
foreach_r (a : z) foo();
foreach_r (i, a : z) foo();
foreach_r (double i, a : z); // #error: must be an integer type, 'double' is not valid.
}
fn void test3()
{
foreach_r (&a : z) foo();
foreach_r (&i, &a : z) foo(); // #error: The index cannot be held by reference, did you accidentally add a '&'?
}
fn void test4()
{
foreach_r (&a : z) foo();
foreach_r (&i, a : z) foo(); // #error: The index cannot be held by reference, did you accidentally add a '&'?
}
fn void test5()
{
foreach_r (int? y : z) foo();
}
fn void test6()
{
foreach_r (int? i, y : z) foo(); // #error: The index may not be an optional.
}
fn void test7()
{
foreach_r (int a : { 1, 2, 3 }) foo();
foreach_r (a : { 1, 2, 3 }) foo(); // #error: Add an explicit type to the variable
}
fn void test8()
{
foreach_r (int a : { z }) foo(); // #error: 'int[3]' to 'int'
}