67fc46a190
#KT-57429 Fixed
9 lines
170 B
Kotlin
Vendored
9 lines
170 B
Kotlin
Vendored
class Outer<T>(val x: T) {
|
|
open inner class Inner(val y: Int)
|
|
}
|
|
|
|
fun Outer<Int>.test() =
|
|
object : Outer<Int>.Inner(42) {
|
|
val xx = x + y
|
|
}
|