21bc2887d2
Omit Unit return type Refactor handling of Unit type: extract separate object UnitType
7 lines
87 B
Kotlin
7 lines
87 B
Kotlin
package demo
|
|
open class Test(i : Int?) {
|
|
open fun test() {
|
|
var i : Int = 10
|
|
Test(i)
|
|
}
|
|
} |