Files
kotlin-fork/js/js.translator/testData/callableReference/function/cases/simple.kt
T
2016-03-09 10:25:38 +03:00

8 lines
172 B
Kotlin
Vendored

// This test was adapted from compiler/testData/codegen/box/callableReference/function/local/.
package foo
fun box(): String {
fun foo() = "OK"
return (::foo)()
}