Files
kotlin-fork/compiler/testData/diagnostics/tests/referenceToParameterizedFun.fir.kt
T
2023-07-10 10:26:43 +00:00

9 lines
110 B
Kotlin
Vendored

// ISSUE: KT-59233
fun <T> consume(arg: T) {}
fun box(): String {
val foo = ::consume
return "OK"
}