Files
c3c/test/test_suite2/errors/bitshift_failable.c3

5 lines
99 B
C

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