mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
10 lines
139 B
Kotlin
10 lines
139 B
Kotlin
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<*>) {} |