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