Files
kotlin/compiler/testData/loadJava/compiledJavaCompareWithKotlin/kotlinSignature/error/WrongValueParameterStructure2.kt
2014-07-25 21:19:38 +04:00

8 lines
178 B
Kotlin

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