8 lines
158 B
Kotlin
8 lines
158 B
Kotlin
package test
|
|
|
|
public open class RedundantProjectionKind {
|
|
public open fun foo(list: List<Number>) {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|