Files
kotlin-fork/compiler/testData/ir/irText/declarations/kt27005.kt
T
Mikhael Bogdanov 4fb434c0de Move out jvm-specific part from ir-common
#KT-27005 Fixed
2018-10-02 11:12:21 +02:00

5 lines
102 B
Kotlin
Vendored

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