about summary refs log tree commit diff
path: root/src/test/compile-fail/auto-deref-bind.rs
AgeCommit message (Collapse)AuthorLines
2012-06-20Remove bind. Issue #2189Brian Anderson-4/+0
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-5/+2
2011-07-01Implement autoderef for function calls.Michael Sullivan-0/+7
This is important since we are going to be making functions noncopyable soon, which means we'll be seeing a lot of boxed functions. (*f)(...) is really just too heavyweight. Doing the autodereferencing was a very little bit tricky since trans_call works with an *lval* of the function whereas existing autoderef code was not for lvals.