Files
kotlin-fork/j2k/testData/fileOrElement/methodCallExpression/genericMethod.java
T
Valentin Kipyatkov 9e27e208ef Made test data correct
2015-06-04 16:20:30 +03:00

13 lines
160 B
Java
Vendored

//file
package demo;
class Map {
<K, V> void put(K k, V v) {}
}
class U {
void test() {
Map m = new Map();
m.<String, Integer>put(null, 10);
}
}