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

5 lines
101 B
C

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