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

5 lines
99 B
C

fn void test()
{
int! x = 0;
int! z = x << 100; // #error: shift exceeds bitsize of 'int'
}