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