blob: b949416628546b29250b2499e0997eeffa0450c1 [file] [log] [blame]
// JVM_ANNOTATIONS
package test;
import kotlin.annotations.jvm.*;
import org.jetbrains.annotations.NotNull;
import java.util.*;
public interface ReadOnlyExtendsWildcard {
void bar(); // Non-SAM
void foo(@ReadOnly List<? extends CharSequence> x, @NotNull Comparable<? super String> y);
}