6 lines
100 B
Kotlin
6 lines
100 B
Kotlin
class fields(a:Int) {
|
|
public val b:Int
|
|
get() = getB()
|
|
|
|
external fun getB():Int
|
|
} |