21bc2887d2
Omit Unit return type Refactor handling of Unit type: extract separate object UnitType
10 lines
148 B
Kotlin
10 lines
148 B
Kotlin
open class Library() {
|
|
class object {
|
|
val ourOut : java.io.PrintStream? = null
|
|
}
|
|
}
|
|
open class User() {
|
|
open fun main() {
|
|
Library.ourOut?.print()
|
|
}
|
|
} |