12 lines
213 B
Kotlin
12 lines
213 B
Kotlin
namespace demo
|
|
open class Container() {
|
|
var myInt : Int = 1
|
|
}
|
|
open class One() {
|
|
class object {
|
|
var myContainer : Container? = Container()
|
|
}
|
|
}
|
|
open class Test() {
|
|
var b : Byte = One.myContainer?.myInt.sure().byt
|
|
} |