5fa1774cc1
#KT-1924 In Progress #KT-2830 Fixed
10 lines
181 B
Kotlin
10 lines
181 B
Kotlin
package test
|
|
|
|
import java.util.*
|
|
|
|
public open class MethodWithVararg : Object() {
|
|
public open fun foo(vararg s : String) {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|