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

10 lines
171 B
Kotlin
Vendored

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