rust/src/libdebug
Patrick Walton 416144b827 librustc: Forbid .. in range patterns.
This breaks code that looks like:

    match foo {
        1..3 => { ... }
    }

Instead, write:

    match foo {
        1...3 => { ... }
    }

Closes #17295.

[breaking-change]
2014-09-30 09:11:26 -07:00
..
fmt.rs std: Rename the ToStr trait to ToString, and to_str to to_string. 2014-07-08 13:01:43 -07:00
lib.rs Register new snapshots 2014-08-29 14:33:08 -07:00
reflect.rs Register new snapshots 2014-08-29 14:33:08 -07:00
repr.rs librustc: Forbid .. in range patterns. 2014-09-30 09:11:26 -07:00