ee74e10f28
In the worst case, we will visit the entire hierarchy of a local class, where non-local classes are not yet resolved ^KT-56550
24 lines
352 B
Kotlin
24 lines
352 B
Kotlin
open class TopLevelClass {
|
|
open fun foo(i: Int) {
|
|
|
|
}
|
|
|
|
open fun boo(b: String) {
|
|
|
|
}
|
|
}
|
|
|
|
open class AnotherTopLevelClass : TopLevelClass() {
|
|
override fun foo(i: Int) {
|
|
|
|
}
|
|
}
|
|
|
|
fun reso<caret>lveMe() {
|
|
class LocalClass : AnotherTopLevelClass() {
|
|
override fun foo(i: Int) {
|
|
}
|
|
|
|
class NestedLocalClass
|
|
}
|
|
} |