Files
kotlin-fork/compiler/testData/ir/irText/declarations/kt27005.kt.txt
T
2020-11-26 00:14:03 +03:00

13 lines
138 B
Plaintext
Vendored

suspend fun foo() {
return baz<Unit>()
}
suspend fun bar(): Any {
return baz<Any>()
}
suspend fun <T : Any?> baz(): T {
TODO()
}