Skip to content

Instantly share code, notes, and snippets.

@firegurafiku
Last active August 29, 2015 14:16
Show Gist options
  • Save firegurafiku/16576da0c6ad0b20266b to your computer and use it in GitHub Desktop.
Save firegurafiku/16576da0c6ad0b20266b to your computer and use it in GitHub Desktop.
// http://wouter.coekaerts.be/2015/puzzle-tweet
class C extends B {
public C() {
super(new java.lang.Long(1));
}
}
class A {
public class B {
public B(java.lang.Long dummy) {
}
}
public class LongClass {
public int compare(java.lang.Long a, java.lang.Long b) { return 1; }
}
public LongClass Long = new LongClass();
public static void main(String[] args) {
System.out.println("Hello World!");
new C();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment