Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail203.d
blob: 51accf5b9f1f8f04ebab41abc157e1a3c3af11b8 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail203.d(10): Error: shift by 33 is outside the range `0..31`
fail_compilation/fail203.d(10): Error: shift by 33 is outside the range `0..31`
---
*/
void
main
()
{
int
c
;
c
=
c
<<
33
;
}