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.
20 lines
654 B
Kotlin
Vendored
20 lines
654 B
Kotlin
Vendored
// Code generation problem with JVM backend.
|
|
// IGNORE_BACKEND: JVM
|
|
// FILE: test.kt
|
|
class A
|
|
|
|
suspend fun A.foo() {}
|
|
|
|
suspend fun box() {
|
|
A().foo()
|
|
}
|
|
|
|
|
|
// EXPECTATIONS
|
|
// test.kt:9 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
|
// test.kt:4 <init>:
|
|
// test.kt:9 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
|
// test.kt:6 foo: $this$foo:A=A, $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
|
// test.kt:9 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|
|
// test.kt:10 box: $completion:kotlin.coroutines.Continuation=Generated_Box_MainKt$main$1
|