summaryrefslogtreecommitdiffstats
path: root/test/029-assert/src/Main.java
blob: 1e5cc7c674f748c6e7a371b1a35559a357bba790 (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("GLITCH: didn't assert (is '-ea' set?)");
        } catch (AssertionError ae) {
            System.out.println("caught expected assert exception");
        }
    }
}