[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Sema / negative-shift-wrapv.c
blob28218be935fcc4ff620cc95cee8ba3468ec41b14
1 // RUN: %clang_cc1 -Wall -ffreestanding -fsyntax-only -fwrapv -verify %s
3 int test(void) {
4 int i;
5 i = -1 << 1; // no-warning
6 return i;
9 // expected-no-diagnostics