Skip to content

Instantly share code, notes, and snippets.

@RainWarrior
Last active August 29, 2015 13:56
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 RainWarrior/9225630 to your computer and use it in GitHub Desktop.
Save RainWarrior/9225630 to your computer and use it in GitHub Desktop.
class Test
{
public static interface C
{
public void foo();
}
public static class B
{
public void foo() {}
}
public static class A extends B implements C
{
}
}
CL: Test Test
CL: Test$C Test$C
CL: Test$B Test$B
CL: Test$A Test$A
MD: Test$B/foo ()V Test$B/bar ()V
#MD: Test$C/foo ()V Test$C/baz ()V
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment