Added checking vararg/not vararg in alternative signatures.

This commit is contained in:
Evgeny Gerashchenko
2012-06-20 23:44:25 +04:00
parent a2066ab0ab
commit 178a10716b
7 changed files with 86 additions and 2 deletions
@@ -0,0 +1,9 @@
package test
import java.util.*
public open class NotVarargReplacedWithVararg : Object() {
public open fun foo(p0 : String?) {
throw UnsupportedOperationException()
}
}