Files
kotlin-fork/idea/testData/refactoring/introduceVariable/DoWhileAddBlock.kt
T
Alefas 1d88960a19 Name suggester + tests.
Fixed commented introduce variable tests.
2012-02-07 18:22:38 +04:00

14 lines
174 B
Kotlin

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