Files
kotlin-fork/compiler/testData/codegen/box/functions/localFunctions/kt3308.kt
T
2019-11-19 11:00:09 +03:00

6 lines
99 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
fun box(): String {
fun <T> foo(t: T) = t
return foo("OK")
}