Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail201.d
blob: 6e51706adde8da232891c057b1888df8efe65c31 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail201.d(10): Error: shift by 33 is outside the range `0..31`
fail_compilation/fail201.d(10): Error: shift by 33 is outside the range `0..31`
---
*/
void
main
()
{
int
c
;
c
=
c
>>>
33
;
}