summaryrefslogtreecommitdiff
path: root/test/files/neg/t5892.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-5892 allow implicit views in annotation argsLukas Rytz2012-07-181-0/+25
the problem was that lazy annotations got completed in phase pickler. the `inferView` method in Typers bails out if `isPastTyper`. now the lazy annotations completes `atPhase(typerPhase)`. test case in `pos`. the second test case in `neg` is for another bug that is discussed in a comment of SI-5892. when type checking arguments of type parameter annotations, the class members should not be in scope. this was alreay fixed in 9129cfe9.