deea0643ad
In case of type constructors captured parameters from outer classes #KT-5510 Fixed #KT-3112 Fixed #KT-6325 Fixed #KT-408 Fixed #KT-6337 Fixed
6 lines
131 B
Kotlin
Vendored
6 lines
131 B
Kotlin
Vendored
class Outer<E : Any> {
|
|
inner class Inner<F, G>
|
|
}
|
|
|
|
val x: Outer<<!UPPER_BOUND_VIOLATED!>String?<!>>.Inner<String, Int> = null!!
|