Files
kotlin/compiler/testData/loadJava/compiledJavaCompareWithKotlin/RemoveRedundantProjectionKind.java
2013-03-12 19:31:45 +04:00

9 lines
212 B
Java

package test;
import java.util.Collection;
public interface RemoveRedundantProjectionKind {
void f(Collection<? extends CharSequence> collection);
void f(Comparable<? super CharSequence> comparator);
}