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