13 lines
167 B
Kotlin
Vendored
13 lines
167 B
Kotlin
Vendored
internal class A {
|
|
private var i = byte.toInt()
|
|
|
|
fun foo() {
|
|
i = 10
|
|
}
|
|
|
|
companion object {
|
|
|
|
val byte: Byte
|
|
get() = 0
|
|
}
|
|
} |