Formatter: handle spaces around 'is' keyword (#874)

Fixes #KT-12548
This commit is contained in:
Kirill Rakhman
2016-05-30 19:35:33 +02:00
committed by Dmitry Jemerov
parent fbd671c158
commit 93ebb3da65
4 changed files with 17 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
fun f() {
if (1 is Int) {
}
}
+5
View File
@@ -0,0 +1,5 @@
fun f() {
if (1 is Int) {
}
}