Files
kotlin-fork/compiler/testData/codegen/script/scriptInstanceCapturing/classCapturesPropertyInStringTemplate.kts
T
2023-12-26 10:18:19 +00:00

20 lines
262 B
Kotlin
Vendored

// IGNORE_BACKEND: JS, JS_IR, JS_IR_ES6, NATIVE, WASM
// IGNORE_BACKEND: JVM
// JVM_ABI_K1_K2_DIFF: KT-63960, KT-63963
// expected: rv: 42
fun foo() = B().bar()
val life = 42
class A {
val x = "$life"
}
class B {
fun bar() = A().x
}
val rv = foo()