Files
rust/src/libsyntax/parse
bors 2f15dcd4d3 auto merge of #17584 : pcwalton/rust/range-patterns-dotdotdot, r=nick29581
This breaks code that looks like:

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

Instead, write:

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

Closes #17295.

r? @nick29581
2014-10-01 03:17:24 +00:00
..
2014-09-14 03:39:36 +03:00
2014-09-30 18:54:02 +02:00
2014-07-09 00:06:27 -07:00