Add spaces around elvis operator

This commit is contained in:
Nikolay Krasko
2014-04-23 17:52:15 +04:00
parent 45013ce8af
commit d49d42a409
4 changed files with 29 additions and 3 deletions
+11
View File
@@ -0,0 +1,11 @@
fun test(a: Int?) {
a?:42
a ?: 42
a ?:
42
a
?: 42
}