mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
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()
|
|
}
|
|
}
|