rust/src/librustc/lint
Patrick Walton 29ec2506ab librustc: Remove the &LIFETIME EXPR production from the language.
This was parsed by the parser but completely ignored; not even stored in
the AST!

This breaks code that looks like:

    static X: &'static [u8] = &'static [1, 2, 3];

Change this code to the shorter:

    static X: &'static [u8] = &[1, 2, 3];

Closes #15312.

[breaking-change]
2014-07-04 00:56:57 -07:00
..
builtin.rs librustc: Remove the &LIFETIME EXPR production from the language. 2014-07-04 00:56:57 -07:00
context.rs More upstream lint changes 2014-06-24 11:36:28 -07:00
mod.rs Rename all raw pointers as necessary 2014-06-28 11:53:58 -07:00