d98d8cfa7f
Functions are final by default in plugin mode
14 lines
200 B
Kotlin
14 lines
200 B
Kotlin
package demo
|
|
class Container() {
|
|
var myInt : Int = 1
|
|
}
|
|
class One() {
|
|
class object {
|
|
var myContainer : Container = Container()
|
|
}
|
|
}
|
|
class Test() {
|
|
fun test() {
|
|
val b = One.myContainer.myInt.toByte()
|
|
}
|
|
} |