OnJava8-Examples/generics/CuriouslyRecurringGeneric.java

7 lines
160 B
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// generics/CuriouslyRecurringGeneric.java
2015-06-15 17:47:35 -07:00
class GenericType<T> {}
public class CuriouslyRecurringGeneric
2015-09-07 11:44:36 -06:00
extends GenericType<CuriouslyRecurringGeneric> {}