2011-09-15 08:46:07 -07:00
|
|
|
// 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-26 18:35:18 -07:00
|
|
|
let regs = @{mut eax: 0};
|
2012-02-15 09:40:42 +01:00
|
|
|
alt check true { true { } }
|
2011-09-15 08:46:07 -07:00
|
|
|
(*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-02-15 09:40:42 +01:00
|
|
|
alt check true { true { } }
|
2011-09-15 08:46:07 -07:00
|
|
|
(*regs < 2) as uint
|
|
|
|
}
|
|
|
|
|
2012-01-29 21:33:08 -05:00
|
|
|
fn test8() -> int {
|
|
|
|
let val = @0;
|
2012-02-15 09:40:42 +01:00
|
|
|
alt check true {
|
2012-01-29 21:33:08 -05:00
|
|
|
true { }
|
|
|
|
}
|
|
|
|
if *val < 1 {
|
|
|
|
0
|
|
|
|
} else {
|
|
|
|
1
|
|
|
|
}
|
|
|
|
}
|
2011-09-15 08:46:07 -07:00
|
|
|
|
2012-03-26 18:35:18 -07:00
|
|
|
fn test9() { let regs = @mut 0; alt check true { true { } } *regs += 1; }
|
2011-09-15 08:46:07 -07:00
|
|
|
|
|
|
|
fn test10() -> int {
|
2012-03-26 18:35:18 -07:00
|
|
|
let regs = @mut [0];
|
2012-02-15 09:40:42 +01:00
|
|
|
alt check true { true { } }
|
2011-09-15 08:46:07 -07:00
|
|
|
(*regs)[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test11() -> [int] { if true { } [1, 2] }
|