Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt32792.kt
T
Ilya Chernikov a1acb4afaf Return correct PSI expression for EmptyLabeledReturn
Fixes diagnostic reporting for appropriate constraint error
#kt-32792 fixed
2020-01-27 10:10:44 +01:00

10 lines
194 B
Kotlin
Vendored

// !LANGUAGE: +NewInference
inline fun <T> tryLambdas(lamb : () -> T) : T{
return lamb.invoke()
}
fun main() {
tryLambdas<String> {
<!TYPE_MISMATCH!>return@tryLambdas<!>
}
}