KT-1053 Incorrect auto formatting of when expression

This commit is contained in:
Nikolay Krasko
2012-01-18 19:27:41 +04:00
parent cbcfeaa1b7
commit dd1fd26461
15 changed files with 321 additions and 9 deletions
+6
View File
@@ -0,0 +1,6 @@
fun some(x : Any) {
when (x) {
is Int -> 0
else -> 1
}
}