3d9d6e666d
(cherry picked from commit 1ea9280)
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 |