Sign in
cobalt
/
cobalt
/
f585e2638bbd137762988742fc2cbe613293dc58
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
test
/
Sema
/
warn-shift-negative.c
blob: c65d66c1214cd7c3508ce939b6ffb7cbf1354687 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -Wshift-count-negative -fblocks -verify %s
int
f
(
int
a
)
{
const
int
i
=
-
1
;
return
a
<<
i
;
// expected-warning{{shift count is negative}}
}