Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. class fail {
  2.     {
  3.         System.out.println("Mich gibt es nicht!");
  4.         test.main(null);
  5.         System.out.println("Dead code ftw!");
  6.     }
  7.  
  8.     static {
  9.         System.out.println("Dolles Programm!");
  10.         test.main(null);
  11.     }
  12. }
  13. class test {
  14.     static {
  15.         fail X = new fail();
  16.     }
  17.  
  18.     public static void main(String[] args) {
  19.         fail X;
  20.         System.out.println("Hallo Welt!");
  21.         X = new fail();
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement