blob: 2e8a6262fa27266bb4d8f782e639f52da4351535 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail205.d(9): Error: shift assign by 65 is outside the range `0..63`
---
*/
void main() {
long c;
c <<= 65;
}