Files
kotlin/compiler/testData/readJavaBinaryClass/kotlinSignature/MethodWithVararg.kt
2012-06-09 16:46:37 +04:00

10 lines
175 B
Kotlin

package test
import java.util.*
public open class MethodWithVararg : Object() {
open fun foo(vararg p0 : String) {
throw UnsupportedOperationException()
}
}