blob: 2c856e03528ce877729a59bd7c9fbb075978eb6d [file] [log] [blame]
internal class Test {
fun putInt(i: Int) {}
fun test() {
val b: Byte = 10
putInt(b.toInt())
}
}