Files
rust/src/libsyntax/parse
Greg Chapple acc9428c6a Display better snippet for invalid char literal
Given this code:

    fn main() {
        let _ = 'abcd';
    }

The compiler would give a message like:

    error: character literal may only contain one codepoint: ';
    let _ = 'abcd';
                 ^~

With this change, the message now displays:

    error: character literal may only contain one codepoint: 'abcd'
    let _ = 'abcd'
            ^~~~~~

Fixes #30033
2016-01-14 17:34:42 +00:00
..
2015-11-10 20:16:28 +09:00
2015-12-30 14:27:59 +13:00
2016-01-06 12:28:34 +11:00