Files
kotlin-fork/compiler/testData/codegen/box/functions/kt3313.kt
T

8 lines
75 B
Kotlin
Vendored

fun <T> foo(t: T) {
}
fun box(): String {
foo(null)
return "OK"
}