about summary refs log tree commit diff
path: root/src/test/compile-fail/move-arg.rs
AgeCommit message (Collapse)AuthorLines
2012-05-24new liveness pass to supercede last_use / initednessNiko Matsakis-4/+0
2012-03-05rustc: Lower case error messagesBrian Anderson-1/+1
2011-12-22Register new snapshots, purge log_err and log_full in favour of log(...).Graydon Hoare-1/+1
2011-12-22Register snapshots and switch logging over to use of log_full or #error / ↵Graydon Hoare-1/+1
#debug.
2011-09-12Pretty-print for new arg-mode syntaxMarijn Haverbeke-1/+1
2011-08-20ReformatBrian Anderson-8/+2
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
2011-08-08Implement typestate checking for move-mode args. Un-XFAIL ↵Graydon Hoare-4/+0
compile-fail/move-arg.rs.
2011-08-08Add new arg-passing mode 'move' denoted with '-T'. Translate as ↵Graydon Hoare-0/+14
pass-by-value, doesn't deinit source yet nor get proper analysis in typestate, alias passes.