org.aspectj/tests/new/TryNoCatchCE.java
2002-12-16 18:51:06 +00:00

8 lines
163 B
Java

public class TryNoCatchCE {
/* @testcase PR#643 PUREJAVA try without catch or finally */
public void notRun() {
try {} // expect CE here
}
}