J2K: Insert initializer type for properties with primitive type if necessary

This commit is contained in:
Natalia Ukhorskaya
2015-12-17 18:01:17 +03:00
parent 188119aa83
commit 1d787ed222
12 changed files with 50 additions and 9 deletions
+3 -3
View File
@@ -3,9 +3,9 @@ internal class A {
private var l2: Long = 1
private val l3 = 1L
private var l4: Long = -1
private val l5 = 123456789101112
private val l6 = -123456789101112
private val l7 = +1
private val l5: Long = 123456789101112
private val l6: Long = -123456789101112
private val l7: Long = +1
private val l8 = +1L
fun foo1(l: Long) {