summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/fail_compilation/fail205.d
blob: 89ddc93fea1aaad43e87440d6d5c9c055e662094 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
TEST_OUTPUT:
---
fail_compilation/fail205.d(9): Error: shift assign by 65 is outside the range `0..63`
---
*/
void main() {
        long c;
        c <<= 65;
}