OnJava8-Examples/generics/CuriouslyRecurringGeneric.java

7 lines
167 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: generics/CuriouslyRecurringGeneric.java
class GenericType<T> {}
public class CuriouslyRecurringGeneric
extends GenericType<CuriouslyRecurringGeneric> {} ///:~