summary refs log tree commit diff
path: root/src/test/run-pass/bind-methods.rs
AgeCommit message (Collapse)AuthorLines
2012-02-15Support 'alt check' syntaxMarijn Haverbeke-2/+0
It is only a way to flag an alt as intentionally non-exhaustive right now. Issue #1679
2012-02-14XFAIL bind-methods test until I figure out what is going wrongMarijn Haverbeke-0/+2
It is not Valgrind-clean.
2012-02-14Allow static method calls to be boundMarijn Haverbeke-0/+20
This allows you to take the value of, for example, `[1].len`, or bind it with `bind x.map(_)` syntax. I'm holding off on implementing this for dynamic methods (those on bounded type parameters or iface types) until it's clearer what we will do with monomorphization. Issue #435