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