Sign in
gnu
/
gcc
/
refs/heads/devel/c++-contracts
/
.
/
gcc
/
testsuite
/
c-c++-common
/
Wshift-count-negative-2.c
blob: 91c71297db3fbb74c880750aa1eff8abfd7ab760 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-Wno-shift-count-negative" } */
void
foo
()
{
unsigned
i1
=
1U
<<
-
1
;
unsigned
i2
=
1U
>>
-
1
;
}