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

11 lines
190 B
Kotlin
Vendored

fun foo() {
while (true) {
while (p) {
while (x > 0) {
do {
<caret>
} while (true)
}
}
}
}