blob: d734cf6654d2306bf13ada1453fa49eb34f6c353 [file]
// !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>() }
}