363fe607fc
#KT-3704 In Progress #KT-1183 In Progress
9 lines
122 B
Kotlin
9 lines
122 B
Kotlin
fun box(): String {
|
|
class Local {
|
|
fun foo() = "OK"
|
|
}
|
|
|
|
val ref = Local::foo
|
|
return Local().ref()
|
|
}
|