moreSpecific simplification, include complete check for inferred types in MethodCandidateInfo.isApplicable

This commit is contained in:
Anna Kozlova
2013-08-15 13:49:47 +04:00
parent 3a958ef8da
commit 47220fd160
9 changed files with 201 additions and 230 deletions
@@ -0,0 +1,7 @@
import java.util.*;
abstract class A {
void computeCostIfNeeded(Map<Object, Integer> costMap) {
Math.min(costMap.get(null), 1);
}
}