Files
kotlin-fork/j2k/testData/fileOrElement/issues/kt-543.kt
T

11 lines
143 B
Kotlin
Vendored

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