summaryrefslogtreecommitdiff
path: root/test/files/neg/forgot-interpolator.scala
Commit message (Collapse)AuthorAgeFilesLines
* Some refinement of -Xlint interpolation warning.Paul Phillips2013-09-271-0/+34
| | | | | | | I had covered a few more cases working on this recently. The warnings in several more cases involving polymorphism, currying, and selects vs. idents receive more refined handling.
* SI-7848 Xlint no warn on $sym with paramsSom Snytt2013-09-231-6/+18
| | | | | | | | | | | | This idea brought to you by retronym. Also improve implicitNotFound detection at typer; and avoid checking the standard interpolation expression for cases like s"some $$x". Some minor refactorings of implicitNotFound strings. The intersobralator allows extra spaces, i.e., trims.
* SI-7848 Xlint no warn on $sym with paramsSom Snytt2013-09-181-0/+32
| | | | This idea brought to you by retronym.
* Warn about forgotten string interpolators.Paul Phillips2013-03-121-0/+15
In the compiler sources this arrives with a number of false positives, because we frequently work with strings containing $foo where foo is an in-scope identifier. I think in normal source code this will be less of a problem, or none at all; but to be conservative the warning is born under -Xlint.