summaryrefslogtreecommitdiff
path: root/test/files/neg/compile-time-only-a.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-9650 Refchecks on case apply transformSom Snytt2016-02-101-1/+7
| | | | | Apply checks for unsavoriness when transforming a case apply.
* SI-8498 @compileTimeOnly should be aware of bridge methods.Antoine Gourlay2014-08-211-4/+1
| | | | | | Calling a @compileTimeOnly method from another @compileTimeOnly method happens when the former gets a bridge method. It should not throw an error. Calling the bridge or the method will anyway.
* streamlines refchecking undesired symbol propertiesEugene Burmako2013-12-091-20/+50
| | | | | | Unifies `checkDeprecated`, `checkMigration` and `checkCompileTimeOnly` into a single centralized point of reference that is now consistently called from `checkTypeRef`, `transformIdent` and `transformSelect`.
* @compileTimeOnly now works for symbols from the empty packageEugene Burmako2013-08-151-1/+22
| | | | Looks like we've got the entire language covered now.
* @compileTimeOnly now works for annotationsEugene Burmako2013-08-151-1/+10
| | | | | http://docs.scala-lang.org/overviews/macros/annotations.html say sincere "thank you!".
* moves compileTimeOnly to scala-libraryEugene Burmako2013-08-141-0/+19
This is the notion that's come to be universally useful, so I suggest we promote it to be universally accessible. Note that the attached test incorrectly fails to report errors for definitions coming from the empty package and for annotations. These are bugs, and they are fixed in subsequent commits of this pull request.