rust/src/test/pretty/block-disambig.rs

48 lines
976 B
Rust
Raw Normal View History

// A bunch of tests for syntactic forms involving blocks that were
// previously ambiguous (e.g. 'if true { } *val;' gets parsed as a
// binop)
fn test1() { let val = @0; { } *val; }
fn test2() -> int { let val = @0; { } *val }
fn test3() {
2012-03-27 01:35:18 +00:00
let regs = @{mut eax: 0};
2012-08-06 19:34:08 +00:00
match check true { true => { } }
(*regs).eax = 1;
}
fn test4() -> bool { let regs = @true; if true { } *regs || false }
fn test5() -> (int, int) { { } (0, 1) }
fn test6() -> bool { { } (true || false) && true }
fn test7() -> uint {
let regs = @0;
2012-08-06 19:34:08 +00:00
match check true { true => { } }
(*regs < 2) as uint
}
fn test8() -> int {
let val = @0;
2012-08-06 19:34:08 +00:00
match check true {
2012-08-04 02:59:04 +00:00
true => { }
}
if *val < 1 {
0
} else {
1
}
}
2012-08-06 19:34:08 +00:00
fn test9() { let regs = @mut 0; match check true { true => { } } *regs += 1; }
fn test10() -> int {
let regs = @mut ~[0];
2012-08-06 19:34:08 +00:00
match check true { true => { } }
(*regs)[0]
}
fn test11() -> ~[int] { if true { } ~[1, 2] }