mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
16 lines
428 B
Kotlin
Vendored
16 lines
428 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
class A {
|
|
suspend fun foo() {}
|
|
suspend fun foo1(l: Long) {
|
|
foo()
|
|
foo()
|
|
val dead = l
|
|
}
|
|
}
|
|
|
|
// METHOD : A.foo1(JLkotlin/coroutines/Continuation;)Ljava/lang/Object;
|
|
// VARIABLE : NAME=this TYPE=LA; INDEX=0
|
|
// VARIABLE : NAME=l TYPE=J INDEX=1
|
|
// VARIABLE : NAME=$continuation TYPE=Lkotlin/coroutines/Continuation; INDEX=7
|
|
// VARIABLE : NAME=$result TYPE=Ljava/lang/Object; INDEX=6 |