summaryrefslogtreecommitdiff
path: root/test/095-switch-MAX_INT/src/Main.java
blob: a004a1aede350861e503b0643c694c770b8cff54 (plain)
1
2
3
4
5
6
7
8
9
10
11
public class Main {
  static public void main(String[] args) throws Exception {
    switch (0x7fffffff) {
    case 0x7fffffff:
      System.out.println("good");
      break;
    default:
      throw new AssertionError();
    }
  }
}