5fa1774cc1
#KT-1924 In Progress #KT-2830 Fixed
8 lines
169 B
Kotlin
8 lines
169 B
Kotlin
package test
|
|
|
|
public open class RedundantProjectionKind : Object() {
|
|
public open fun foo(list: List<Number>) {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|