Files
kotlin-fork/compiler/testData/diagnostics/tests/functionLiterals/kt3343.kt
T
Michael Nedzelsky 947b4d4ce8 Test for obsolete KT-3343
#KT-3343 Obsolete
2015-10-30 18:57:42 +03:00

25 lines
510 B
Kotlin
Vendored

// KT-3343 Type mismatch when function literal consists of try-catch with Int returning call, and Unit is expected
fun main(args : Array<String>) {
"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(<!UNUSED_PARAMETER!>obj<!>: Any) {}
fun String.prt(action : (String) -> Unit){
action(this)
}