Files
kotlin-fork/compiler/testData/debug/stepping/propertyAccessor.kt
T
2023-08-15 17:03:11 +00:00

28 lines
409 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// FILE: test.kt
class A {
val prop : Int
get() {
return 1
}
}
fun box() {
A().prop
}
// EXPECTATIONS JVM JVM_IR
// test.kt:12 box
// test.kt:4 <init>
// test.kt:12 box
// test.kt:7 getProp
// test.kt:12 box
// test.kt:13 box
// EXPECTATIONS JS_IR
// test.kt:12 box
// test.kt:4 <init>
// test.kt:12 box
// test.kt:7 <get-prop>
// test.kt:13 box