about summary refs log tree commit diff
path: root/src/test/run-pass/double-unbox.rs
AgeCommit message (Collapse)AuthorLines
2011-09-12Reformat for new mode syntax, step 1Marijn Haverbeke-1/+1
Long lines were fixed in a very crude way, as I'll be following up with another reformat in a bit.
2011-08-20ReformatBrian Anderson-1/+1
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
2011-07-27Reformat for new syntaxMarijn Haverbeke-6/+4
2011-07-22Fix unboxing in alias passMarijn Haverbeke-0/+8
The alias checker would only deref once for autoderef, and only deref boxes. It should now do the right thing. Closes #725.