xref: /minix3/external/bsd/llvm/dist/clang/test/CXX/expr/expr.const/p3-0x-nowarn.cpp (revision eda6f5931d42c77e1480347b1fc3eef2f8d33806)
1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 -Wno-c++11-narrowing -verify %s
2 // expected-no-diagnostics
3 
4 // <rdar://problem/11121178>
5 void f(int x) {
6   switch (x) {
7     case 0x80000001: break;
8   }
9 }
10