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

15 lines
200 B
Kotlin

open class A() {
{
while (true) println(<selection>1</selection>)
}
}
/*
open class A() {
{
while (true) {
val i = 1
println(i)
}
}
}
*/