Files
kotlin-fork/compiler/testData/codegen/script/scriptInstanceCapturing/classCapturesProperty.kts
T
Ilya Chernikov 5824b9c59c K2 Scripting: add Fir script codegen tests
27 failing tests are muted
2023-07-05 19:46:03 +00:00

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