Remove toInt() from rendering IntValue

This commit is contained in:
Natalia Ukhorskaya
2014-02-20 15:57:25 +04:00
parent a80114d720
commit 89d99d2848
35 changed files with 99 additions and 99 deletions

View File

@@ -2,5 +2,5 @@ package test
public final class FinalFieldAsVal : java.lang.Object {
public constructor FinalFieldAsVal()
public final val f: kotlin.Int = 1.toInt()
public final val f: kotlin.Int = 1
}