Files
kotlin-fork/idea/resources/intentionDescriptions/MergeIfsIntention/before.kt.template
T
Kirill Rakhman 956094e062 Add Merge ifs intention (#975)
Fixes #KT-9912
2017-01-27 14:20:11 +01:00

5 lines
56 B
Plaintext

if (a) {
if (b) {
println("a and b")
}
}