Files
kotlin/compiler/testData/codegen/box/diagnostics/functions/invoke/onObjects/invokeOnObject2.kt
Svetlana Isakova b71260f54e Moved tests
that are used both for codegen & diagnostics to codegen/box/diagnostics
2014-11-21 14:02:45 +03:00

5 lines
86 B
Kotlin

object A {
fun invoke(i: Int) = i
}
fun box() = if (A(42) == 42) "OK" else "fail"