mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
13 lines
228 B
Kotlin
Vendored
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) {
|
|
}
|
|
} |