You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TryNoCatchCE.java 163B

1234567
  1. public class TryNoCatchCE {
  2. /* @testcase PR#643 PUREJAVA try without catch or finally */
  3. public void notRun() {
  4. try {} // expect CE here
  5. }
  6. }