6 lines
101 B
Kotlin
Vendored
6 lines
101 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
object Singleton {
|
|
fun ok() = "OK"
|
|
}
|
|
|
|
fun box() = (Singleton::ok)() |