summaryrefslogtreecommitdiff
path: root/test/files/neg/t5426.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-6120 Suppress extra warningsSom Snytt2013-12-161-7/+1
| | | | | | | | | | | | | | | | This is a mere polish for the fix to allow multiple warnings. Sensibility checks in refchecks were shown to be redundant. This commit includes a mild refactor to reduce tabbage, and uses a local var to flag that a warning has already been emitted. It would be better to have the checks return true if warned, to facilitate `nonSensically || unrelatedly`, etc., but that's a lot of `else false`. The check files that were updated with the redundant warnings are reverted.
* SI-6120 multiple warnings at same position.Paul Phillips2013-09-271-1/+7
| | | | | An error suppresses all further warnings at the same position, but multiple warnings can be heard.
* Made -Xfatal-warnings less immediately fatal.Paul Phillips2012-08-101-5/+7
| | | | | | | Instead of changing warnings to errors mid-stream, at the end of a run I check for condition "no errors, some warnings, and fatal warnings" and then generate an error at that point. This is necessary to test for some warnings which come from later stages.
* Improved warning for insensible comparisons.Paul Phillips2012-01-311-0/+13
Utilize knowledge of case class synthetic equals to rule out some comparisons statically. Closes SI-5426.