mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
10 lines
163 B
D
10 lines
163 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail204.d(9): Error: shift assign by 65 is outside the range `0..63`
|
|
---
|
|
*/
|
|
void main() {
|
|
long c;
|
|
c >>= 65;
|
|
}
|