rust/src/test
Patrick Walton 7579185b4c librustc: Use the correct categorized mutable type for the pattern in
`for` loop heads.

This breaks code like:

    let x = Some(box 1i);
        for &a in x.iter() {
    }

Change this code to obey the borrow checking rules. For example:

    let x = Some(box 1i);
        for &ref a in x.iter() {
    }

Closes #16205.

[breaking-change]
2014-08-12 15:02:51 -07:00
..
auxiliary Rename Share to Sync 2014-08-07 08:54:38 -07:00
bench Fix misspelled comments for tests. 2014-08-09 22:08:36 -04:00
codegen Add pub to all the codegen tests 2013-10-10 06:00:51 -07:00
compile-fail librustc: Use the correct categorized mutable type for the pattern in 2014-08-12 15:02:51 -07:00
compile-fail-fulldeps test: Try to fix a failing snapshot test 2014-07-15 14:00:37 -07:00
debuginfo Remove managed_box gate from tests 2014-07-26 21:05:29 -07:00
pretty Rename Share to Sync 2014-08-07 08:54:38 -07:00
run-fail Remove obsolete stack growth tests 2014-08-04 21:52:57 -07:00
run-make auto merge of #16434 : vadimcn/rust/many-crates-but-no-match, r=alexcrichton 2014-08-12 09:31:17 +00:00
run-pass auto merge of #16425 : nham/rust/fix_nan_format, r=alexcrichton 2014-08-12 07:31:17 +00:00
run-pass-fulldeps syntax: add support for quoting arms 2014-07-29 16:01:36 -07:00