Files
kotlin-fork/compiler/testData/codegen/box/properties/accessToPrivateSetter.kt
T
2023-08-01 09:16:20 +00:00

19 lines
300 B
Kotlin
Vendored

// IGNORE_BACKEND_K1: WASM
// IGNORE_BACKEND_K1: JS_IR, JS_IR_ES6
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
class D {
var foo = 1
private set
fun foo() {
foo = 2
}
}
fun box(): String {
D().foo()
return "OK"
}