Skip to content

Instantly share code, notes, and snippets.

@irof
Created November 21, 2012 05:42
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 irof/4123273 to your computer and use it in GitHub Desktop.
Save irof/4123273 to your computer and use it in GitHub Desktop.
hogeのセカイ
class Hoge extends RuntimeException implements Fuga.Hoge<Hoge> {
Hoge Hoge;
Hoge() {
throw Hoge(Hoge);
}
public Hoge Hoge() {
Hoge Hoge = new Hoge();
return Hoge.Hoge(this.Hoge);
}
Hoge Hoge(Hoge Hoge) throws Hoge {
throw Hoge.Hoge();
}
}
class Fuga {
interface Hoge<Hoge> {
<Hoge> Hoge Hoge();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment