選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }