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.

ReachableEmpty.java 282B

12345678910111213141516171819
  1. public class ReachableEmpty {
  2. public static void main(String[] args) { }
  3. public void m() {
  4. return;;
  5. }
  6. public int m1() {
  7. return 2;;
  8. }
  9. public void m2() {
  10. throw new Error();;
  11. }
  12. public void m3() {
  13. return;;;;;;
  14. }
  15. }