summaryrefslogtreecommitdiff
path: root/test/files/pos/t8013.flags
Commit message (Collapse)AuthorAgeFilesLines
* SI-8512 Infer Any for the qSom Snytt2014-08-121-1/+1
| | | | | | | | | Avoid the widening bug for q. This resolution also suffers from the inference of Any, which can trigger a warning and an anxiety attack. But that's still better than doing the wrong thing. Right?
* SI-8013 Nowarn on macro str interpolationSom Snytt2013-12-041-0/+1
When warning about stray "foo $bar" under `-Xlint`, which may be missing an interpolator id, suppress the warning if we're in the middle of a macro expansion, since we have no useful heuristic to apply to the expanded tree. The test for whether the string is part of an expanded tree is to check all open macros for an expanded tree that contains the literal tree under scrutiny. (This is deemed more paranoid than looking for a macro application that is an enclosing position.)