Files
kotlin-fork/backend.native/tests/external/codegen/box/functions/kt3313.kt
T
2017-03-13 15:31:46 +03:00

8 lines
75 B
Kotlin

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