summaryrefslogtreecommitdiff
path: root/test/files/pos/t9020.flags
Commit message (Collapse)AuthorAgeFilesLines
* SI-9020 Avoid spurious value discarding warning post-typerJason Zaugg2015-03-121-0/+1
Typechecking during the specialization phase was emitting a bogus warning about value discarding. Such warnings in the typer should be guarded by `!isPastTyper` to restrict the analysis to the code the user originally wrote, rather than the results of later typechecking. I've made this change to the value discarding warning. I've also changed a numeric widening warning in the vicinity, although I do not have a test case for that.