Files
c3c/test/test_suite7/statements/binary_fail.c3
2025-02-23 13:53:04 +01:00

8 lines
182 B
Plaintext

fn void test()
{
float a;
float b;
int *c;
int *d;
if (a + c) return; // #error: A value of type 'float' cannot be added to 'int*', an integer was expected here
}