59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
15 lines
190 B
Kotlin
15 lines
190 B
Kotlin
package demo
|
|
|
|
class Container {
|
|
var myInt = 1
|
|
}
|
|
|
|
class One {
|
|
default object {
|
|
var myContainer = Container()
|
|
}
|
|
}
|
|
|
|
class Test {
|
|
var b = One.myContainer.myInt.toByte()
|
|
} |