13 lines
258 B
Kotlin
13 lines
258 B
Kotlin
// This test was adapted from compiler/testData/codegen/boxWithStdlib/callableReference/function/local/.
|
|
package foo
|
|
|
|
fun box(): String {
|
|
var result = "Fail"
|
|
|
|
fun changeToOK() { result = "OK" }
|
|
|
|
val ok = ::changeToOK
|
|
ok()
|
|
return result
|
|
}
|