Files
kotlin-fork/compiler/testData/codegen/box/callableReference/bound/objectReceiver.kt
T
2016-11-25 16:11:18 +03:00

8 lines
145 B
Kotlin
Vendored

// TODO investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
object Singleton {
fun ok() = "OK"
}
fun box() = (Singleton::ok)()