Files
kotlin-fork/j2k/testData/fileOrElement/issues/kt-543.kt
T
2016-12-14 13:35:31 +03:00

10 lines
138 B
Kotlin
Vendored

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