mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
10 lines
193 B
Kotlin
Vendored
10 lines
193 B
Kotlin
Vendored
// PARAM_TYPES: D
|
|
// PARAM_DESCRIPTOR: value-parameter d: D defined in test1
|
|
class D {
|
|
suspend fun await() {}
|
|
}
|
|
|
|
// SIBLING:
|
|
suspend fun test1(d: D) {
|
|
<selection>d.await()</selection>
|
|
} |