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