aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/TryNoCatchCE.java
blob: 9c6f0f1a296839dc79820d1780b3f27254821731 (plain)
1
2
3
4
5
6
7
public class TryNoCatchCE {
    /* @testcase PR#643 PUREJAVA try without catch or finally */
    public void notRun() {
        try {} // expect CE here
    } 
}