7 lines
124 B
Kotlin
Vendored
7 lines
124 B
Kotlin
Vendored
internal class Test {
|
|
val int: Int
|
|
get() {
|
|
val b: Byte = 10
|
|
return b.toInt()
|
|
}
|
|
} |