Skip to content

Instantly share code, notes, and snippets.

@RainWarrior
Last active December 31, 2016 12:18
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