OnJava8-Examples/generics/CuriouslyRecurringGeneric.java

8 lines
208 B
Java
Raw Normal View History

2015-06-15 17:47:35 -07:00
//: generics/CuriouslyRecurringGeneric.java
// <20>2015 MindView LLC: see Copyright.txt
class GenericType<T> {}
public class CuriouslyRecurringGeneric
extends GenericType<CuriouslyRecurringGeneric> {} ///:~