5fa1774cc1
#KT-1924 In Progress #KT-2830 Fixed
8 lines
175 B
Kotlin
8 lines
175 B
Kotlin
package test
|
|
|
|
import java.util.*
|
|
|
|
public open class MethodWithGenerics : Object() {
|
|
public open fun foo(a : String, b : List<Map.Entry<String?, String>?>) : String = ""
|
|
}
|