Files
kotlin-fork/j2k/testData/fileOrElement/issues/kt-543-boxed.kt
T
Simon Ogorodnik 0560ba7929 KT-19943: Remove redundant type conversions in J2kPostProcessing
Don't remove them in converter itself
2017-11-13 15:54:33 +03:00

13 lines
179 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)
}
}