mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
14 lines
300 B
Java
14 lines
300 B
Java
package test;
|
|
|
|
import jet.runtime.typeinfo.KotlinSignature;
|
|
|
|
public final class StarProjection {
|
|
@KotlinSignature("fun foo(): MyClass<*>")
|
|
public final MyClass<?> foo() {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
public interface MyClass<T extends CharSequence> {
|
|
}
|
|
}
|