blob: abd34cfd543ceb3ab11d4c7828b2a48684dda2d4 [file]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
// KT-3343 Type mismatch when function literal consists of try-catch with Int returning call, and Unit is expected
fun main() {
"hello world".prt{
try{
print(it)
log("we are printing")
}
catch(e : Exception){
log("Exception")
}
}
}
fun log(str : String) : Int{
print("logging $str")
return 0
}
fun print(obj: Any) {}
fun String.prt(action : (String) -> Unit){
action(this)
}
/* GENERATED_FIR_TAGS: funWithExtensionReceiver, functionDeclaration, functionalType, integerLiteral, lambdaLiteral,
localProperty, propertyDeclaration, stringLiteral, thisExpression, tryExpression */