mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
9 lines
129 B
Kotlin
Vendored
9 lines
129 B
Kotlin
Vendored
class A {
|
|
companion object {
|
|
operator fun invoke(i: Int) = i
|
|
}
|
|
}
|
|
|
|
fun box() = if (A(42) == 42) "OK" else "fail"
|
|
|