we don't need no DummyMethodCallExpression

This commit is contained in:
Dmitry Jemerov
2012-06-01 18:08:42 +02:00
committed by Pavel V. Talanov
parent 192cdd7028
commit 152d214870
6 changed files with 16 additions and 16 deletions
@@ -6,6 +6,6 @@ open fun test() : Unit {
var b : Byte = 10
putInt(b.toInt())
var b2 : Byte? = 10
putInt(b2.toInt())
putInt(b2?.toInt())
}
}