Try-catch-finally statements & correct line numbers
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
fun foo() {
|
||||
try {
|
||||
System.out?.println()
|
||||
} catch (e: Throwable) {
|
||||
return
|
||||
}
|
||||
|
||||
val t = try {
|
||||
System.out?.println()
|
||||
} catch (e: Throwable) {
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
// 2 3 5 8 9 11 8
|
||||
Reference in New Issue
Block a user