mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
14 lines
242 B
Plaintext
Vendored
14 lines
242 B
Plaintext
Vendored
// PARAM_TYPES: D
|
|
// PARAM_DESCRIPTOR: value-parameter d: D defined in test1
|
|
class D {
|
|
suspend fun await() {}
|
|
}
|
|
|
|
// SIBLING:
|
|
suspend fun test1(d: D) {
|
|
__dummyTestFun__(d)
|
|
}
|
|
|
|
private suspend fun __dummyTestFun__(d: D) {
|
|
d.await()
|
|
} |