Files
kotlin/compiler/testData/loadJava/RemoveRedundantProjectionKind.java
2012-12-07 14:02:54 +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);
}