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
@@ -8,4 +8,4 @@ annotation class Ann(
Ann(1.toInt().plus(1), 1.minus(1.toInt()), 1.toInt().times(1.toInt())) class MyClass
// EXPECTED: Ann(p1 = 2.toInt(): Int, p2 = 0.toInt(): Int, p3 = 1.toInt(): Int)
// EXPECTED: Ann(p1 = 2: Int, p2 = 0: Int, p3 = 1: Int)