15 lines
206 B
Kotlin
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)
|
|
}
|
|
}
|
|
*/ |