15 lines
224 B
Kotlin
Vendored
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>()
|
|
} |