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.
25 lines
401 B
Kotlin
Vendored
25 lines
401 B
Kotlin
Vendored
// FILE: test.kt
|
|
|
|
class A {
|
|
fun computeParam() = 32
|
|
|
|
fun foo(param: Int = computeParam()) {
|
|
}
|
|
}
|
|
|
|
fun box() {
|
|
A().foo()
|
|
}
|
|
|
|
// FORCE_STEP_INTO
|
|
// EXPECTATIONS
|
|
// test.kt:11 box
|
|
// test.kt:3 <init>
|
|
// test.kt:11 box
|
|
// test.kt:6 foo$default (synthetic)
|
|
// test.kt:4 computeParam
|
|
// test.kt:6 foo$default (synthetic)
|
|
// test.kt:7 foo
|
|
// test.kt:6 foo$default (synthetic)
|
|
// test.kt:12 box
|