Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/noInformationForParameter.fir.kt
T

15 lines
224 B
Kotlin
Vendored

// !WITH_NEW_INFERENCE
package noInformationForParameter
//+JDK
import java.util.*
fun test() {
val n = newList()
val n1 : List<String> = newList()
}
fun <S> newList() : ArrayList<S> {
return ArrayList<S>()
}