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

15 lines
206 B
Kotlin

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