mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-22 15:51:33 +00:00
10 lines
171 B
Java
Vendored
10 lines
171 B
Java
Vendored
package test;
|
|
|
|
import java.lang.CharSequence;
|
|
|
|
public class WildcardBounds {
|
|
static class A<T> {}
|
|
|
|
void foo(A<? extends CharSequence> x, A<? super String> y) {}
|
|
}
|