xref: /llvm-project/clang/test/Sema/negative-shift-wrapv.c (revision 8c5edb59cf487373e545ccb87ffcd24cb7d0d0ec)
1 // RUN: %clang_cc1 -Wall -ffreestanding -fsyntax-only -fwrapv -verify %s
2 
test(void)3 int test(void) {
4   int i;
5   i = -1 << 1; // no-warning
6   return i;
7 }
8 
9 // expected-no-diagnostics
10