Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/errorsOnImplicitInvokeInSimpleCall.fir.kt
T
2021-06-07 15:25:47 +03:00

5 lines
184 B
Kotlin
Vendored

inline operator fun <reified T> Int.invoke() = this
val a2 = <!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>1()<!>
val a3 = 1.<!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>invoke<!>()