summaryrefslogtreecommitdiff
path: root/test/files/neg/t7783.check
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'scala/2.10.x' into merge-2.10.xGrzegorz Kossakowski2013-10-161-6/+8
| | | | | | Conflicts: build.number test/files/neg/classmanifests_new_deprecations.check
* SI-7783 Don't issue deprecation warnings for inferred TypeTreesJason Zaugg2013-09-271-0/+16
Deprecation checks in RefChecks were looking into all TypeTrees to find references to deprecated type aliases. However, when the compiler infers a type argument or type of a member it creates a TypeTree (with a null original) that was also leading to warnings. I ran into this problem often when upgrading a build from SBT 0.12 to 0.13: a plugin I was using used the deprecated type alias, and I suffered transitively when I used methods from its API. This commit disables the checks for inferred TypeTree-s.