Files
kotlin-fork/j2k/tests/testData/ast/callChainExpression/libraryFieldCall.kt
T
Pavel V. Talanov 21bc2887d2 Converter:
Omit Unit return type
Refactor handling of Unit type: extract separate object UnitType
2013-12-22 15:53:14 +04:00

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()
}
}