Files
kotlin-fork/compiler/testData/ir/irText/declarations/localVarInDoWhile.kt
T
2017-05-05 09:59:30 +03:00

5 lines
63 B
Kotlin
Vendored

fun foo() {
do {
val x = 42
} while (x != 42)
}