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

9 lines
105 B
Kotlin
Vendored

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