summaryrefslogtreecommitdiff
path: root/test/files/run/no-pickle-skolems.check
Commit message (Collapse)AuthorAgeFilesLines
* Deskolemize type skolems before pickling.Paul Phillips2012-12-151-0/+1
Lex Spoon noticed what appeared to be duplicate symbols in methods read from classfiles. The duplicates turned out to be type skolems, which because they're not supposed to be pickled in the first place (right?) are unpickled without turning back into skolems. Now pickler is careful to deskolemize before writing anything down. The effort implied by test case is more than can possibly be justified for this obscure compiler corner, but I'll chalk it up to reflection exploration.