mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
15 lines
236 B
Kotlin
Vendored
15 lines
236 B
Kotlin
Vendored
fun foo() {
|
|
try {
|
|
System.out?.println()
|
|
} catch (e: Throwable) {
|
|
return
|
|
}
|
|
|
|
val t = try {
|
|
System.out?.println()
|
|
} catch (e: Throwable) {
|
|
return
|
|
}
|
|
}
|
|
|
|
// 2 3 4 5 6 +8 9 10 11 8 13 |