7 lines
104 B
Kotlin
7 lines
104 B
Kotlin
package demo
|
|
open class Test(i : Int) {
|
|
open fun test() : Unit {
|
|
var b : Byte = 10
|
|
Test((b).toInt())
|
|
}
|
|
} |