Files
kotlin-fork/j2k/testData/fileOrElement/field/conversion.kt
T

14 lines
185 B
Kotlin

class A {
private var i: Int? = getByte().toInt()
fun foo() {
i = 10
}
companion object {
fun getByte(): Byte {
return 0
}
}
}