aboutsummaryrefslogtreecommitdiffstats
path: root/tests/harness/ErrorTest.java
blob: cd689b9774fae11fa774fdf87a76e156e49e2e1d (plain)
1
2
3
4
5
6
7
8
9
public class ErrorTest {
    static String i() { return "0"; }
    int i = i();            // CE 5 always
    int j = i();            // CE 6 always
}