Files
kotlin-fork/idea/testData/intentions/mergeElseIf/comments.kt
T
DmiitriiJarosh 613fbf7a5d Merge else-if intention (KT-34218)
#KT-34218 Fixed
2019-10-21 15:52:32 +03:00

11 lines
162 B
Kotlin
Vendored

fun foo() {
// comment 1
if (true) {
} <caret>else /* comment 2 */ {
if (true) {
// comment 4
foo()
}
}
}