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

13 lines
187 B
Kotlin
Vendored

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