(boolean v)
| 2 | private static boolean success = false; |
| 3 | |
| 4 | private static void expect(boolean v) { |
| 5 | if (! v) throw new RuntimeException(); |
| 6 | } |
| 7 | |
| 8 | public static void main(String[] args) throws Exception { |
| 9 | ((Thread.UncaughtExceptionHandler) Thread.currentThread().getThreadGroup()) |