Files
kotlin-fork/idea/testData/intentions/mergeIfs/comments.kt
T
Kirill Rakhman 956094e062 Add Merge ifs intention (#975)
Fixes #KT-9912
2017-01-27 14:20:11 +01:00

9 lines
165 B
Kotlin
Vendored

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