Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/errorsOnImplicitInvokeInSimpleCall.fir.kt
T
2021-02-08 10:40:18 +03:00

5 lines
86 B
Kotlin
Vendored

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