xref: /aosp_15_r20/art/test/095-switch-MAX_INT/src/Main.java (revision 795d594fd825385562da6b089ea9b2033f3abf5a)
1 public class Main {
main(String[] args)2   static public void main(String[] args) throws Exception {
3     switch (0x7fffffff) {
4     case 0x7fffffff:
5       System.out.println("good");
6       break;
7     default:
8       throw new AssertionError();
9     }
10   }
11 }
12