mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
8 lines
175 B
Kotlin
8 lines
175 B
Kotlin
package test
|
|
|
|
public final class StarProjection {
|
|
public final fun foo(): MyClass<*> = throw UnsupportedOperationException()
|
|
|
|
public trait MyClass<T: CharSequence?>
|
|
}
|