blob: 3c867a663cc9017d52bca5c031a1753fbf1b0ee9 [file]
// WITH_KOTLIN_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);
}