Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/implicitInvokeInCompanionObjectWithFunctionalArgument.fir.kt
T

18 lines
368 B
Kotlin
Vendored

// !WITH_NEW_INFERENCE
// !CHECK_TYPE
// !DIAGNOSTICS: -UNUSED_PARAMETER, -UNUSED_VARIABLE
class TestClass {
companion object {
inline operator fun <T> invoke(task: () -> T) = task()
}
}
fun test(s: String): String {
val a = TestClass { "K" }
a checkType { _<String>() }
val b = TestClass { return s }
b checkType { _<Nothing>() }
}