Files
kotlin-fork/compiler/testData/ir/irText/declarations/kt27005.kt
T
2023-03-22 15:18:17 +00:00

10 lines
175 B
Kotlin
Vendored

// FIR_IDENTICAL
// IGNORE_BACKEND: JS_IR
// IGNORE_BACKEND: JS_IR_ES6
suspend fun foo() = baz<Unit>()
suspend fun bar() = baz<Any>()
suspend fun <T> baz(): T {
TODO()
}