rust/src/test
Patrick Walton 857ba988f1 libsyntax: Don't strip types and lifetimes from single-segment paths in
patterns.

This breaks code like:

    fn main() {
        match Some("foo") {
            None::<int> => {}
            Some(_) => {}
        }
    }

Change this code to not contain a type error. For example:

    fn main() {
        match Some("foo") {
            None::<&str> => {}
            Some(_) => {}
        }
    }

Closes #16353.

[breaking-change]
2014-08-12 10:33:16 -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
compile-fail libsyntax: Don't strip types and lifetimes from single-segment paths in 2014-08-12 10:33:16 -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