summaryrefslogtreecommitdiff
path: root/test/files/pos/t9356
Commit message (Collapse)AuthorAgeFilesLines
* SI-9356 more careful assertion in back-endAdriaan Moors2015-06-163-0/+21
Calling `exists` on a `Symbol` triggers unpickling, which failed for reasons I did not investigate. Replaced `sym.exists` by `sym != NoSymbol`, which is good enough here. Also replaced assertion by a `devWarning`, since the logic seems too ad-hoc to actually crash the compiler when it's invalidated. Partially reverts b45a91fe22. See also #1532.