dbl -> toDouble

This commit is contained in:
Alex Tkachman
2012-02-22 13:14:41 +02:00
parent 18990e2c1b
commit 53bba59a4f
79 changed files with 335 additions and 298 deletions
@@ -2,9 +2,9 @@ package name
class Test() {
var i = 5
val ten = 10.long
val ten = 10.toLong()
fun Long.t() = this.int + i++ + ++i
fun Long.t() = this.toInt() + i++ + ++i
fun tt() = ten.t()
}