rust/src/librand
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
..
distributions librustc: Forbid .. in range patterns. 2014-09-30 09:11:26 -07:00
isaac.rs Fallout from renaming 2014-09-16 14:37:48 -07:00
lib.rs Fallout from renaming 2014-09-16 14:37:48 -07:00
rand_impls.rs Impl Rand for tuples of arity 11 and 12 2014-06-29 11:44:25 +02:00
reseeding.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00