summaryrefslogtreecommitdiff
path: root/test/files/neg/t8291.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-8291 Fix implicitNotFound message with type aliasesJason Zaugg2014-10-051-0/+7
This pattern of code is typically a bug: if (f(tp.typeSymbol)) { g(tp.typeArgs) } Intead, one needs to take the base type of `tp` wrt `tp.typeSymbol`. This commit does exactly that when formatting the `@implicitNotFound` custom error message. Patch found on the back of an envelope in the handwriting of @adriaanm