21bc2887d2
Omit Unit return type Refactor handling of Unit type: extract separate object UnitType
9 lines
119 B
Kotlin
9 lines
119 B
Kotlin
package demo
|
|
open class Test() {
|
|
open fun putInt(i : Int) {
|
|
}
|
|
open fun test() {
|
|
var b : Byte = 10
|
|
putInt(b.toInt())
|
|
}
|
|
} |