Fixed KT-1295, first part of removing 'println'. Undo part is still not working.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
fun a() {
|
||||
when (1) {
|
||||
is 1 -> println(<selection>2</selection>)
|
||||
}
|
||||
}
|
||||
/*
|
||||
fun a() {
|
||||
when (1) {
|
||||
is 1 -> {
|
||||
val i = 2
|
||||
println(i)
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
Reference in New Issue
Block a user