13 lines
202 B
Kotlin
Vendored
13 lines
202 B
Kotlin
Vendored
// EXPECTED_REACHABLE_NODES: 1284
|
|
package foo
|
|
|
|
class A {
|
|
operator fun invoke(i: Int) = i
|
|
}
|
|
|
|
fun box(): String {
|
|
val result = A()(1)
|
|
if (result != 1) return "fail: $result"
|
|
return "OK"
|
|
}
|