Files
kotlin-fork/compiler/testData/diagnostics/tests/controlStructures/valVarCatchParameter.fir.kt
T

13 lines
156 B
Kotlin
Vendored

fun f() {
try {
} catch (val e: Exception) {
}
try {
} catch (var e: Exception) {
}
try {
} catch (e: Exception) {
}
}