Safe call arguments are now handled as nullable in generic resolver #KT-9985 Fixed

This commit is contained in:
Mikhail Glukhikh
2016-02-01 16:07:39 +03:00
parent 187694d1b0
commit 60d56b30bf
7 changed files with 103 additions and 8 deletions
@@ -0,0 +1,3 @@
fun foo(l: List<String>?) {
Pair(l?.joinToString(), "")
}
@@ -0,0 +1,3 @@
package
public fun foo(/*0*/ l: kotlin.collections.List<kotlin.String>?): kotlin.Unit