10 lines
114 B
Kotlin
Vendored
10 lines
114 B
Kotlin
Vendored
package d
|
|
|
|
override val f : ()-> Int = { 12 }
|
|
|
|
fun test() {
|
|
f()
|
|
}
|
|
|
|
var g: Int = 1
|
|
protected set(i: Int) {} |