mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-28 08:31:30 +00:00
11 lines
208 B
Java
Vendored
11 lines
208 B
Java
Vendored
package test;
|
|
|
|
public final class StarProjection {
|
|
public final MyClass<?> foo() {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
public interface MyClass<T extends CharSequence> {
|
|
}
|
|
}
|