Files
c3c/test/test_suite/statements/binary_fail.c3
Christoffer Lerno f46697bc54 Updated casts (#684)
Cast code rework. Remove llvm_set_bool and friends.
2022-12-27 14:16:47 +01:00

8 lines
182 B
C

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
}