mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
228 B
Kotlin
Vendored
13 lines
228 B
Kotlin
Vendored
//ALLOW_AST_ACCESS
|
|
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!!
|
|
}
|
|
}
|