6bb939c6cb
^KT-59425 Fixed ^KT-59370 Fixed
20 lines
339 B
Kotlin
Vendored
20 lines
339 B
Kotlin
Vendored
// IGNORE_BACKEND_K1: WASM
|
|
// IGNORE_BACKEND_K1: JS_IR, JS_IR_ES6
|
|
// IGNORE_BACKEND_K2: 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"
|
|
}
|