mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
11 lines
239 B
D
11 lines
239 B
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;
|
|
}
|