6 lines
84 B
Kotlin
6 lines
84 B
Kotlin
open class Test() {
|
|
open fun getInt() : Int {
|
|
var b : Byte = 10
|
|
return b.toInt()
|
|
}
|
|
} |