blob: b527d4e2d2a552b5b5736bd691295dff3d03bfb2 [file] [log] [blame]
package test;
import java.util.List;
public interface GenericInterfaceParameterWithSelfBound<T extends GenericInterfaceParameterWithSelfBound<T>> {
T method(T t);
}