9 lines
123 B
Kotlin
Vendored
9 lines
123 B
Kotlin
Vendored
internal class Test {
|
|
fun putInt(i: Int) {
|
|
}
|
|
|
|
fun test() {
|
|
val b = 10
|
|
putInt(b.toInt())
|
|
}
|
|
} |