10 lines
187 B
Kotlin
10 lines
187 B
Kotlin
package test
|
|
|
|
import java.util.*
|
|
|
|
public open class NotVarargReplacedWithVararg : Object() {
|
|
public open fun foo(p0 : String?) {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|