5824b9c59c
27 failing tests are muted
13 lines
200 B
Kotlin
Vendored
13 lines
200 B
Kotlin
Vendored
// IGNORE_BACKEND: JS, JS_IR, JS_IR_ES6, NATIVE, WASM
|
|
// IGNORE_BACKEND_K2: JVM_IR
|
|
|
|
// expected: rv: abc
|
|
|
|
// KT-19423
|
|
val used = "abc"
|
|
class User {
|
|
val property = used
|
|
}
|
|
|
|
val rv = User().property
|