p3-0x-nowarn.cpp 198 B

123456789
  1. // RUN: %clang_cc1 -fsyntax-only -std=c++11 -Wno-c++11-narrowing -verify %s
  2. // expected-no-diagnostics
  3. // <rdar://problem/11121178>
  4. void f(int x) {
  5. switch (x) {
  6. case 0x80000001: break;
  7. }
  8. }