Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail206.d
blob: 88c90cb7ee015dcfe31bd86c02d75e30f9077ef0 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail206.d(9): Error: shift assign by 65 is outside the range `0..63`
---
*/
void
main
()
{
long
c
;
c
>>>=
65
;
}