Files
kotlin/compiler/testData/loadJava/compiledJava/singleAbstractMethod/GenericInterfaceParameterWithSelfBound.java
2013-03-27 19:19:57 +04:00

8 lines
171 B
Java

package test;
import java.util.List;
public interface GenericInterfaceParameterWithSelfBound<T extends GenericInterfaceParameterWithSelfBound<T>> {
T method(T t);
}