Files
kotlin/compiler/testData/loadJava/compiledJavaCompareWithKotlin/kotlinSignature/error/WrongValueParameterStructure1.kt
2013-03-12 19:31:45 +04:00

8 lines
189 B
Kotlin

package test
import java.util.*
public open class WrongValueParameterStructure1 : Object() {
public open fun foo(p0 : String?, p1 : List<Map.Entry<String, String>>?) : String? = ""
}