Skip to content

Instantly share code, notes, and snippets.

@RainWarrior
Last active December 31, 2016 12:18
Show Gist options
  • Save RainWarrior/67a065ba7fdcd78385983d0bf1b713ff to your computer and use it in GitHub Desktop.
Save RainWarrior/67a065ba7fdcd78385983d0bf1b713ff to your computer and use it in GitHub Desktop.
abstract class TestA<T extends TestA<T>> {}
abstract class TestB<T extends TestB<T>> extends TestA<T> {}
final class TestBF extends TestB<TestBF>
{
static TestBF create() { return new TestBF(); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment