a1acb4afaf
Fixes diagnostic reporting for appropriate constraint error #kt-32792 fixed
10 lines
194 B
Kotlin
Vendored
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<!>
|
|
}
|
|
} |