rust/src/test
bors d616603c84 auto merge of #9673 : huonw/rust/macros, r=catamorphism
That is, only a single expression or item gets parsed, so if there are
any extra tokens (e.g. the start of another item/expression) the user
should be told, rather than silently dropping them.

An example:

    macro_rules! foo {
        () => {
            println("hi");
            println("bye);
        }
    }

would expand to just `println("hi")`, which is almost certainly not
what the programmer wanted.

Fixes #8012.
2013-10-02 04:21:26 -07:00
..
auxiliary remove the float type 2013-10-01 14:54:10 -04:00
bench auto merge of #9665 : alexcrichton/rust/snapshot, r=brson 2013-10-02 02:31:29 -07:00
codegen Fix warnings it tests 2013-08-17 08:42:35 -07:00
compile-fail auto merge of #9673 : huonw/rust/macros, r=catamorphism 2013-10-02 04:21:26 -07:00
debug-info remove the float type 2013-10-01 14:54:10 -04:00
pretty pretty: Remove usage of fmt! 2013-09-30 23:21:20 -07:00
run-fail remove the float type 2013-10-01 14:54:10 -04:00
run-pass auto merge of #9665 : alexcrichton/rust/snapshot, r=brson 2013-10-02 02:31:29 -07:00
run-pass-fulldeps quote_*! macros take an ExtCtx 2013-08-18 13:14:15 -04:00