Files
kotlin-fork/compiler/testData/debug/stepping/propertyAccessor.kt
T
2022-07-19 16:06:24 +00:00

27 lines
392 B
Kotlin
Vendored

// FILE: test.kt
class A {
val prop : Int
get() {
return 1
}
}
fun box() {
A().prop
}
// EXPECTATIONS JVM JVM_IR
// test.kt:11 box
// test.kt:3 <init>
// test.kt:11 box
// test.kt:6 getProp
// test.kt:11 box
// test.kt:12 box
// EXPECTATIONS JS_IR
// test.kt:11 box
// test.kt:11 box
// test.kt:6 A.get_prop_wosl9o_k$
// test.kt:6 A.get_prop_wosl9o_k$