Files
kotlin-fork/idea/testData/refactoring/introduceVariable/DoWhileAddBlockInner.kt
T
2015-04-29 14:07:05 +02:00

5 lines
93 B
Kotlin
Vendored

open class A() {
init {
do println(<selection>1</selection>) while (true)
}
}