ace259314b
This commit solves problem with resolved qualifier of local class #KT-36758 Fixed
12 lines
180 B
Kotlin
Vendored
12 lines
180 B
Kotlin
Vendored
fun box(): String {
|
|
val result = "OK"
|
|
|
|
class Local {
|
|
fun foo() = result
|
|
}
|
|
|
|
val member = Local::foo
|
|
val instance = Local()
|
|
return member(instance)
|
|
}
|