Files
kotlin-fork/compiler/testData/diagnostics/tests/functionLiterals/kt47493.fir.kt
T
2021-08-06 13:27:57 +03:00

24 lines
252 B
Kotlin
Vendored

fun test1() {
try {
{ toDouble ->
}
} catch (e: Exception) {
}
}
fun test2() {
try {
} catch (e: Exception) {
{ toDouble ->
}
}
}
fun box(): String {
test1()
test2()
return "OK"
}