Made test data correct

This commit is contained in:
Valentin Kipyatkov
2015-06-04 16:17:59 +03:00
parent 6751a1d440
commit 9e27e208ef
@@ -8,6 +8,6 @@ class Map {
class U {
void test() {
Map m = new Map();
m.<String, int>put(null, 10);
m.<String, Integer>put(null, 10);
}
}