summaryrefslogtreecommitdiffstats
path: root/test/029-assert/src/Main.java
blob: b1544fb5abe8395dc4aef38c0b8080cbc6b78093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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("didn't assert (is '-ea' implemented?)");
        } catch (AssertionError ae) {
            System.out.println("caught expected assert exception");
        }
    }
}