bf4e27b152
Classes are final by default in plugin mode
12 lines
192 B
Kotlin
12 lines
192 B
Kotlin
package demo
|
|
class Container() {
|
|
var myInt : Int = 1
|
|
}
|
|
class One() {
|
|
class object {
|
|
var myContainer : Container = Container()
|
|
}
|
|
}
|
|
class Test() {
|
|
var b : Byte = One.myContainer.myInt.toByte()
|
|
} |