mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
10 lines
139 B
Kotlin
Vendored
10 lines
139 B
Kotlin
Vendored
package test
|
|
|
|
open class K<out T: K<T>> {
|
|
fun foo(k: K<*>) {}
|
|
fun foo(): K<*> = null!!
|
|
}
|
|
|
|
class Sub: K<K<*>>()
|
|
|
|
fun bar(k: K<*>) {} |