b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
12 lines
137 B
Plaintext
Vendored
12 lines
137 B
Plaintext
Vendored
suspend fun foo() {
|
|
return baz<Unit>()
|
|
}
|
|
|
|
suspend fun bar(): Any {
|
|
return baz<Any>()
|
|
}
|
|
|
|
suspend fun <T : Any?> baz(): T {
|
|
TODO()
|
|
}
|