mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 15:51:54 +00:00
13 lines
298 B
Java
Vendored
13 lines
298 B
Java
Vendored
// 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);
|
|
}
|