summaryrefslogtreecommitdiff
path: root/test/files/neg/t9041.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-9041 Avoid unreported type error with overloading, implicitsJason Zaugg2015-02-021-0/+4
If `qual.foo(args)` fails to typecheck, we fall back to `ImplicitView(qual).foo(args)`. However, if the original type error stemmed from an overload ambiguity, the tree `Select(qual, 'foo')` holds onto an error symbol. The fall back attempt just returns an `Apply` tree containing the erroneous qualifier, as it does not want to issue cascading type errors. This commit replaces the error symbol with a `NoSymbol`, which triggers the second try typechecking to perform overload resolution again. A more principled fix might be to more pervasively duplicate trees before mutating their types and symbols, that this is beyond the scope of this bug fix.