Files
kotlin-fork/idea/testData/refactoring/introduceVariable/IfThenAddBlockInner.kt
T

12 lines
154 B
Kotlin

fun a() {
if (true) println(<selection>1</selection>)
else 2
}
/*
fun a() {
if (true) {
val i = 1
println(i)
} else 2
}
*/