rust/src/test
Jeong YunWon cb918e1a83 Allow non-literal static range pattern for match arms
Fix unintended error problem of:

static s: int = 1;
static e: int = 42;

fn main() {
    match 7 {
        s..e => (),
         ^~                 error: expected `=>` but found `..`
        _ => (),
    }
}
2013-05-05 11:05:06 +09:00
..
auxiliary add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
bench add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
compile-fail auto merge of #6230 : thestinger/rust/whitespace, r=catamorphism 2013-05-04 00:48:37 -07:00
debug-info auto merge of #5824 : bleibig/rust/debuginfo, r=brson 2013-04-19 12:03:49 -07:00
pretty add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
run-fail add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
run-pass Allow non-literal static range pattern for match arms 2013-05-05 11:05:06 +09:00
run-pass-fulldeps add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00