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