Files
kotlin/compiler/testData/codegen/notNullAssertions/noAssertionForNullableGenericMethod.kt

4 lines
52 B
Kotlin
Vendored

fun <T> foo(a: List<T>) {
val t: T = a.get(0)
}