2012-12-11 01:32:48 +00:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2011-09-15 15:46:07 +00: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 }
|
|
|
|
|
2013-02-23 00:08:16 +00:00
|
|
|
struct S { eax: int }
|
2013-01-29 02:55:29 +00:00
|
|
|
|
2011-09-15 15:46:07 +00:00
|
|
|
fn test3() {
|
2013-02-23 00:08:16 +00:00
|
|
|
let regs = @mut S {eax: 0};
|
2012-08-23 21:44:58 +00:00
|
|
|
match true { true => { } _ => { } }
|
2011-09-15 15:46:07 +00: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-08-23 21:44:58 +00:00
|
|
|
match true { true => { } _ => { } }
|
2011-09-15 15:46:07 +00:00
|
|
|
(*regs < 2) as uint
|
|
|
|
}
|
|
|
|
|
2012-01-30 02:33:08 +00:00
|
|
|
fn test8() -> int {
|
|
|
|
let val = @0;
|
2012-08-23 21:44:58 +00:00
|
|
|
match true {
|
2012-08-04 02:59:04 +00:00
|
|
|
true => { }
|
2012-08-23 21:44:58 +00:00
|
|
|
_ => { }
|
2012-01-30 02:33:08 +00:00
|
|
|
}
|
|
|
|
if *val < 1 {
|
|
|
|
0
|
|
|
|
} else {
|
|
|
|
1
|
|
|
|
}
|
|
|
|
}
|
2011-09-15 15:46:07 +00:00
|
|
|
|
2012-08-23 21:44:58 +00:00
|
|
|
fn test9() { let regs = @mut 0; match true { true => { } _ => { } } *regs += 1; }
|
2011-09-15 15:46:07 +00:00
|
|
|
|
|
|
|
fn test10() -> int {
|
2012-06-29 23:26:56 +00:00
|
|
|
let regs = @mut ~[0];
|
2012-08-23 21:44:58 +00:00
|
|
|
match true { true => { } _ => { } }
|
2011-09-15 15:46:07 +00:00
|
|
|
(*regs)[0]
|
|
|
|
}
|
|
|
|
|
2012-06-29 23:26:56 +00:00
|
|
|
fn test11() -> ~[int] { if true { } ~[1, 2] }
|