inference: skip constraints and everything dependant above overload resolution

This commit is contained in:
Anna.Kozlova
2018-11-15 15:53:53 +01:00
parent 7f09661d00
commit 8b768f2e94
2 changed files with 4 additions and 10 deletions

View File

@@ -10,9 +10,8 @@ class TestClass {
}
class A {
static B getB(A a) {
return null;
}
static B getB(A a) { return null; }
static B getB(String a) { return null; }
}
interface B {