// 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 }