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

7 lines
91 B
Kotlin
Vendored

fun foo() {
<caret>if (true) {
if (false) {
foo()
}
}
}