Files
kotlin/compiler/testData/loadJava/compiledJavaCompareWithKotlin/kotlinSignature/error/RedundantProjectionKind.kt
Alexander Udalov 5fa1774cc1 Support hasStableParameterNames in KotlinSignature and propagation
#KT-1924 In Progress
 #KT-2830 Fixed
2014-03-19 23:24:28 +04:00

8 lines
169 B
Kotlin

package test
public open class RedundantProjectionKind : Object() {
public open fun foo(list: List<Number>) {
throw UnsupportedOperationException()
}
}