summaryrefslogtreecommitdiff
path: root/test/files/neg/t6539
Commit message (Collapse)AuthorAgeFilesLines
* SI-6539 moves @compileTimeOnly away from scala-reflectEugene Burmako2013-01-312-1/+7
| | | | | | | | The move is done to provide forward compatibility with 2.10.0. The annotation isn't replaced with one of the macro-based solutions right away (see comments for more information about those), because we lack necessary tech in 2.10.x.
* Refine @compileTimeOnlyJason Zaugg2012-11-082-9/+9
| | | | | | | | | | - Don't default the message, and show it exclusively. - Fix cut-and-pasto in the @since tag - Be tolerant if the annotaion class is missing, as seems to have been the case compiling the continuations plugin. - s/\t/ / in the test file to show the errors are positioned correctly. - Use defensive getOrElse
* SI-6539 Annotation for methods unfit for post-typer ASTsJason Zaugg2012-11-062-0/+16
Motivated by the `.value` method in the SBT task-syntax branch, which should only be called within the context of the argument to a setting initialization macro. The facility is akin to a fatal deprecation.