KT-5482 Redundant type arguments are not detected in some cases

#KT-5482 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-06-03 21:28:47 +03:00
parent 9802931a90
commit f14615315d
7 changed files with 44 additions and 5 deletions
@@ -8,6 +8,6 @@ class Map {
class U {
void test() {
Map m = new Map();
m.<String, int>put("10", 10);
m.<String, int>put(null, 10);
}
}