mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
- Interner was working incorrectly with parents - nested classes were serialized in codegen out of any context #KT-5660 Fixed
12 lines
200 B
Kotlin
Vendored
12 lines
200 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> w: Q = null!!
|
|
}
|
|
}
|