blob: 6c4d923e248951d53d2f133d00f3c0b776ea63e9 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail201.d(10): Error: shift by 33 is outside the range `0..31`
fail_compilation/fail201.d(10): Error: shift by 33 is outside the range `0..31`
---
*/
void main() {
int c;
c = c >>> 33;
}