3b3fd0fa0d
The size has increased due to new implementation of KClass
13 lines
202 B
Kotlin
Vendored
13 lines
202 B
Kotlin
Vendored
// EXPECTED_REACHABLE_NODES: 1112
|
|
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"
|
|
}
|