rust/src/test
Patrick Walton e6e58e43f8 libsyntax: Forbid type parameters in field expressions.
This breaks code like:

    struct Foo {
        x: int,
    }

    let f: Foo = ...;
    ... f.x::<int> ...

Change this code to not contain an unused type parameter. For example:

    struct Foo {
        x: int,
    }

    let f: Foo = ...;
    ... f.x ...

Closes #18680.

[breaking-change]
2014-11-11 10:45:59 -08:00
..
auxiliary First stage of struct variant field visibility changes 2014-11-09 00:30:04 -08:00
bench Fallout from collection conventions 2014-11-06 12:26:08 -05:00
codegen librustc: Forbid private types in public APIs. 2014-09-22 20:05:45 -07:00
compile-fail libsyntax: Forbid type parameters in field expressions. 2014-11-11 10:45:59 -08:00
compile-fail-fulldeps Update code with new lint names 2014-10-28 08:54:21 -07:00
debuginfo debuginfo: Enable some GDB tests on Windows. 2014-10-31 18:49:59 +01:00
pretty libsyntax: Forbid escapes in the inclusive range \x80-\xff in 2014-11-04 14:58:11 -08:00
run-fail librustc: Call return_type only for functions. 2014-11-04 22:44:02 -05:00
run-make rustc: Process #[cfg]/#[cfg_attr] on crates 2014-11-07 12:04:28 -08:00
run-pass auto merge of #18802 : bkoropoff/rust/issue-18769, r=luqmana 2014-11-10 16:12:03 +00:00
run-pass-fulldeps Remove a large amount of deprecated functionality 2014-10-19 12:59:40 -07:00
run-pass-valgrind Move some tests to run-pass-valgrind 2014-10-23 13:52:34 +13:00