Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail203.d
blob: ecbe5952992a3b8b11777554599ce0d9ed463414 [
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
;
}