Skip to content

Instantly share code, notes, and snippets.

@jsyeo
Created August 26, 2015 08:02
Show Gist options
  • Save jsyeo/3dab2a950ac0b6756794 to your computer and use it in GitHub Desktop.
Save jsyeo/3dab2a950ac0b6756794 to your computer and use it in GitHub Desktop.
Main Entry Point
public class Main {
public static void main(String[] args) {
a();
}
static void a() {
b();
}
static void b() {
c();
}
static void c() {
}
}
class Dead {
void x() {
y();
}
void y() {
Main.c();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment