0560ba7929
Don't remove them in converter itself
13 lines
179 B
Kotlin
Vendored
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)
|
|
}
|
|
} |