Files
kotlin/compiler/testData/codegen/box/diagnostics/functions/invoke/onObjects/invokeOnClassObject1.kt
2015-09-25 19:20:20 +03:00

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"