blob: b8748201ffc01e6586c66db6d1de4dfc0c2773fb [file] [log] [blame]
James Molloy59802322016-08-16 09:45:36 +00001// RUN: %clang_cc1 -Wall -ffreestanding -fsyntax-only -fwrapv -verify %s
2
3int test() {
4 int i;
5 i = -1 << 1; // no-warning
6 return i;
7}
8
9// expected-no-diagnostics