Added checks for type arguments numbers in alternative signatures. Added tests.

This commit is contained in:
Evgeny Gerashchenko
2012-06-20 22:10:35 +04:00
parent 1649b208cb
commit de83e93f28
16 changed files with 140 additions and 0 deletions
@@ -0,0 +1,7 @@
package test
import java.util.*
public open class WrongValueParameterStructure2 : Object() {
public open fun foo(p0 : String?, p1 : List<Map.Entry<String?, String?>?>?) : String? = ""
}