14 lines
188 B
Kotlin
Vendored
14 lines
188 B
Kotlin
Vendored
package foo
|
|
|
|
class Test() {
|
|
var a: Int = 5
|
|
set(b: Int) {
|
|
field = 3
|
|
}
|
|
}
|
|
|
|
fun box(): Boolean {
|
|
var test = Test()
|
|
test.a = 5
|
|
return (test.a == 3)
|
|
} |