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

34 lines
576 B
Kotlin
Vendored

fun foo() {
if (x) {
if (x.y) {
if (y) {
}
else {
if (a) {
}
else if (b) {
}
else if (c) {
if (q) {
}
else if (qq) {
}
else if (qqq) {
}
else {
if (p) <caret>return
}
}
else {
}
}
}
}
}