Files
kotlin-fork/compiler/testData/ir/irText/declarations/kt27005.kt
T
Mark Punzalan 5afab1ac2b [FIR] FIR2IR: Populate calls with type arguments and function type
parameters with bounds/supertypes.
2019-11-25 09:37:47 +03:00

6 lines
119 B
Kotlin
Vendored

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