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.
16 lines
159 B
Kotlin
Vendored
16 lines
159 B
Kotlin
Vendored
// FILE: test.kt
|
|
|
|
fun foo() = prop
|
|
|
|
val prop = 1
|
|
|
|
fun box() {
|
|
foo()
|
|
}
|
|
|
|
// EXPECTATIONS
|
|
// test.kt:8 box
|
|
// test.kt:3 foo
|
|
// test.kt:8 box
|
|
// test.kt:9 box
|