Fix formatting for when with subjects (KT-27027)

#KT-27027 Fixed
This commit is contained in:
Nikolay Krasko
2018-09-25 17:48:39 +03:00
parent 0833f23d02
commit 1be491504a
4 changed files with 66 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
fun test() {
when (val i = 1) {
}
when (var i = 2) {
}
when (var i = 2) {
}
when (var i = 2
) {
}
when (
val i = 3) {
}
when (
val i = 4) {
}
}