e9c9d5731e
This is in preparation for enabling the tests for FIR which will be easier to do when the tests are on the new infrastructure.
21 lines
254 B
Kotlin
Vendored
21 lines
254 B
Kotlin
Vendored
// FILE: test.kt
|
|
|
|
class A {
|
|
val prop : Int
|
|
get() {
|
|
return 1
|
|
}
|
|
}
|
|
|
|
fun box() {
|
|
A().prop
|
|
}
|
|
|
|
// EXPECTATIONS
|
|
// test.kt:11 box
|
|
// test.kt:3 <init>
|
|
// test.kt:11 box
|
|
// test.kt:6 getProp
|
|
// test.kt:11 box
|
|
// test.kt:12 box
|