1d88960a19
Fixed commented introduce variable tests.
14 lines
162 B
Kotlin
14 lines
162 B
Kotlin
fun a() {
|
|
when (1) {
|
|
is 1 -> <selection>2</selection>
|
|
}
|
|
}
|
|
/*
|
|
fun a() {
|
|
when (1) {
|
|
is 1 -> {
|
|
val i = 2
|
|
}
|
|
}
|
|
}
|
|
*/ |