10 lines
171 B
Kotlin
Vendored
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)() |