Files
kotlin/idea/testData/codeInsight/breadcrumbs/Try.kt
Valentin Kipyatkov fcce1e3838 KT-12852 Support breadcrumbs for Kotlin
#KT-12852 Fixed
2016-09-13 17:46:16 +03:00

18 lines
228 B
Kotlin
Vendored

fun foo() {
try {
try {
}
finally {
try {
}
catch (e: RuntimeException) {
<caret>
}
}
}
catch(e: Exception) {
}
}