art/test/095-switch-MAX_INT/src/Main.java

12 lines
233 B
Java

public class Main {
static public void main(String[] args) throws Exception {
switch (0x7fffffff) {
case 0x7fffffff:
System.out.println("good");
break;
default:
throw new AssertionError();
}
}
}