54858c2118
^KT-63655: Fixed ^KT-63901: Fixed ^KT-63988: Fixed
22 lines
630 B
Kotlin
Vendored
22 lines
630 B
Kotlin
Vendored
|
|
fun test() {
|
|
class Local {
|
|
inner class Inner {
|
|
val prop = object {
|
|
fun foo() {
|
|
fun bar() {
|
|
class DeepLocal {
|
|
inner class Deepest {
|
|
fun local(): Local = Local()
|
|
fun inner(): Inner = Inner()
|
|
fun deep(): DeepLocal = DeepLocal()
|
|
fun deepest(): Deepest? = Deepest()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|