summary refs log tree commit diff
path: root/src/test/run-pass/select-macro.rs
AgeCommit message (Collapse)AuthorLines
2012-10-11Use move instead of ref in select-macroTim Chevalier-1/+1
2012-10-11Use match move in select-macro, get rid of a FIXMETim Chevalier-3/+2
2012-10-01Move over to calling ptr::addr_ofTim Chevalier-1/+1
Everything should now call ptr::addr_of instead of ptr::p2::addr_of. Only the pipes macro code when compiled by stage0 will call ptr::p2::addr_of. Needs a snapshot to get rid of that.
2012-08-26Camel case the option typeBrian Anderson-1/+1
2012-08-23Update invocation syntax for `macro_rules!`Paul Stansifer-4/+4
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-4/+4
2012-08-17Move select macro into another file, so it can be including in multiple tests.Eric Holk-0/+63
Fixing long lines.