dmd/compiler/test/fail_compilation/fail203.d
2022-07-09 18:53:07 +02:00

11 lines
239 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail203.d(10): Error: shift by 33 is outside the range `0..31`
fail_compilation/fail203.d(10): Error: shift by 33 is outside the range `0..31`
---
*/
void main() {
int c;
c = c << 33;
}