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.

Source14Assert.java 235B

12345678910111213
  1. public class Source14Assert {
  2. private void method1() {
  3. try {
  4. invoke();
  5. } catch (Throwable throwable) {
  6. assert false : throwable;
  7. }
  8. }
  9. private void invoke() {}
  10. public static void main(String[] args) {}
  11. }