0560ba7929
Don't remove them in converter itself
8 lines
110 B
Kotlin
Vendored
8 lines
110 B
Kotlin
Vendored
internal class Test {
|
|
fun putInt(i: Int) {}
|
|
|
|
fun test() {
|
|
val b = 10
|
|
putInt(b)
|
|
}
|
|
} |