Files
kotlin-fork/j2k/tests/testData/ast/for/forWithEmptyBlock.kt
T
Pavel V. Talanov 7f88de1dba Converter tests:
White spaces in member lists are preserved
2013-12-22 16:49:47 +04:00

11 lines
50 B
Kotlin

{
var i: Int = 0
while (i <0)
{
{}
{
j++
i++
}
}
}