f19eb20803
#KT-5287 Fixed
15 lines
187 B
Kotlin
15 lines
187 B
Kotlin
package demo
|
|
|
|
class Container {
|
|
var myInt = 1
|
|
}
|
|
|
|
object One {
|
|
var myContainer = Container()
|
|
}
|
|
|
|
class Test {
|
|
fun test() {
|
|
val b = One.myContainer.myInt.toByte()
|
|
}
|
|
} |