Files
kotlin/compiler/testData/loadJava/compiledJavaCompareWithKotlin/kotlinSignature/MethodWithVararg.kt
2013-03-12 19:31:45 +04:00

10 lines
182 B
Kotlin

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