Files
kotlin-fork/idea/testData/quickfix/variables/removeValVarFromParameter/beforeCatchParameter.kt
T
2014-10-15 11:51:01 +04:00

8 lines
109 B
Kotlin

// "Remove 'val' from parameter" "true"
fun f() {
try {
} catch (<caret>val e: Exception) {
}
}