Always place keywords after local variables and parameters

This commit is contained in:
Nikolay Krasko
2013-09-13 19:00:51 +04:00
parent d681f306ae
commit e6c6982c61
11 changed files with 85 additions and 45 deletions
@@ -0,0 +1,4 @@
fun test() {
val a = 12
<caret>
}
@@ -0,0 +1,4 @@
fun test(fals: Int) {
val falt = 111
f<caret>
}
@@ -0,0 +1,3 @@
fun bar(fo: Int) {
<caret>
}