1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Copyright 2007 The Android Open Source Project /** * Test Java language asserts. */ public class Main { public static void main(String[] args) { assert true; try { assert false; System.out.println("GLITCH: didn't assert (is '-ea' set?)"); } catch (AssertionError ae) { System.out.println("caught expected assert exception"); } } }