mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
12 lines
209 B
Kotlin
Vendored
12 lines
209 B
Kotlin
Vendored
package test
|
|
|
|
class MembersReferenceOuterTP<P> {
|
|
inner class Inner {
|
|
fun <Q : P> f() {}
|
|
fun g(p: P): P = null!!
|
|
|
|
val v: P = null!!
|
|
val <Q : P> Q.w: Q get() = null!!
|
|
}
|
|
}
|