Files
kotlin-fork/j2k/testData/fileOrElement/methodCallExpression/genericMethod.kt
T
2015-06-04 16:20:29 +03:00

13 lines
162 B
Kotlin
Vendored

package demo
class Map {
fun <K, V> put(k: K?, v: V) {
}
}
class U {
fun test() {
val m = Map()
m.put<String, Int>(null, 10)
}
}