Files
kotlin-fork/idea/testData/refactoring/introduceVariable/WhenAddBlock.kt.after
T
2014-04-17 19:01:17 +04:00

7 lines
82 B
Plaintext

fun a() {
when (1) {
is 1 -> {
val i = 2
}
}
}