mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-26 00:21:32 +00:00
11 lines
240 B
Java
Vendored
11 lines
240 B
Java
Vendored
package test;
|
|
|
|
import org.jetbrains.annotations.*;
|
|
|
|
import java.util.*;
|
|
|
|
public interface ReadOnlyExtendsWildcard {
|
|
void bar(); // Non-SAM
|
|
void foo(@ReadOnly List<? extends CharSequence> x, @NotNull Comparable<? super String> y);
|
|
}
|