Added alternative signature test with vararg parameter.

This commit is contained in:
Evgeny Gerashchenko
2012-06-06 16:37:34 +04:00
parent b1ba730ebb
commit bb0f3f733b
3 changed files with 30 additions and 0 deletions
@@ -0,0 +1,9 @@
package test
import java.util.*
public open class MethodWithVararg : Object() {
open fun foo(vararg p0 : String) {
throw UnsupportedOperationException()
}
}