brintos

brintos / llvm-project-archived public Read only

0
0
Text · 169 B · f163c39 Raw
9 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -std=c++11 -Wno-c++11-narrowing -verify %s2// expected-no-diagnostics3 4void f(int x) {5  switch (x) {6    case 0x80000001: break;7  }8}9