Files
c3c/test/test_suite14/errors/bitshift_failable.c3
2023-01-11 18:00:08 +01:00

5 lines
99 B
C

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