Files
kotlin-fork/compiler/testData/diagnostics/tests/controlStructures/valVarCatchParameter.kt
T
2013-02-13 18:08:36 +04:00

13 lines
228 B
Kotlin
Vendored

fun f() {
try {
} catch (<!VAL_OR_VAR_ON_CATCH_PARAMETER!>val<!> e: Exception) {
}
try {
} catch (<!VAL_OR_VAR_ON_CATCH_PARAMETER!>var<!> e: Exception) {
}
try {
} catch (e: Exception) {
}
}