Created
August 26, 2015 08:02
-
-
Save jsyeo/3dab2a950ac0b6756794 to your computer and use it in GitHub Desktop.
Main Entry Point
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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