Last active
December 31, 2016 12:18
-
-
Save RainWarrior/67a065ba7fdcd78385983d0bf1b713ff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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