blob: 090e39a8b8b8a8a176202ce5bf4c5112bccda1ff [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>() }
}