MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail202.d
blobebd806052366b101327a2e74802f98819cd345be
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail202.d(10): Error: shift by 33 is outside the range `0..31`
5 fail_compilation/fail202.d(10): Error: shift by 33 is outside the range `0..31`
6 ---
7 */
8 void main() {
9 int c;
10 c = c >> 33;