(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
fail202.d
/*
TEST_OUTPUT:
---
fail_compilation/fail202.d(10): Error: shift by 33 is outside the range `0..31`
fail_compilation/fail202.d(10): Error: shift by 33 is outside the range `0..31`
---
*/
void main() {
        int c;
        c = c >> 33;
}