Skip to content

Instantly share code, notes, and snippets.

@z-a-ki3
Created April 29, 2015 11:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save z-a-ki3/fc7268c2437f01690757 to your computer and use it in GitHub Desktop.
Save z-a-ki3/fc7268c2437f01690757 to your computer and use it in GitHub Desktop.
class A {
private A(){ }
}
class B extends A {
private B() { }
void play() { }
public static void main(String[] args) {
B b = new B();
b.play();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment