Files
kotlin-fork/j2k/tests/testData/ast/issues/file/kt-543.kt
T
Alex Tkachman 53bba59a4f dbl -> toDouble
2012-02-22 13:14:41 +02:00

9 lines
135 B
Kotlin

package demo
open class Test() {
open fun putInt(i : Int) : Unit {
}
open fun test() : Unit {
var b : Byte = 10
putInt((b).toInt())
}
}