2012-12-10 19:32:48 -06: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 10:46:07 -05:00
|
|
|
// A bunch of tests for syntactic forms involving blocks that were
|
|
|
|
// previously ambiguous (e.g. 'if true { } *val;' gets parsed as a
|
|
|
|
// binop)
|
|
|
|
|
2013-12-12 02:02:26 -06:00
|
|
|
|
2013-12-31 17:46:27 -06:00
|
|
|
use std::cell::Cell;
|
|
|
|
|
2014-10-02 00:10:09 -05:00
|
|
|
fn test1() { let val = &0i; { } *val; }
|
2011-09-15 10:46:07 -05:00
|
|
|
|
2014-10-02 00:10:09 -05:00
|
|
|
fn test2() -> int { let val = &0i; { } *val }
|
2011-09-15 10:46:07 -05:00
|
|
|
|
2013-02-22 18:08:16 -06:00
|
|
|
struct S { eax: int }
|
2013-01-28 20:55:29 -06:00
|
|
|
|
2011-09-15 10:46:07 -05:00
|
|
|
fn test3() {
|
2014-10-02 00:10:09 -05:00
|
|
|
let regs = &Cell::new(S {eax: 0});
|
2012-08-23 16:44:58 -05:00
|
|
|
match true { true => { } _ => { } }
|
2013-12-31 17:46:27 -06:00
|
|
|
regs.set(S {eax: 1});
|
2011-09-15 10:46:07 -05:00
|
|
|
}
|
|
|
|
|
2014-10-02 00:10:09 -05:00
|
|
|
fn test4() -> bool { let regs = &true; if true { } *regs || false }
|
2011-09-15 10:46:07 -05:00
|
|
|
|
|
|
|
fn test5() -> (int, int) { { } (0, 1) }
|
|
|
|
|
|
|
|
fn test6() -> bool { { } (true || false) && true }
|
|
|
|
|
|
|
|
fn test7() -> uint {
|
2014-10-02 00:10:09 -05:00
|
|
|
let regs = &0i;
|
2012-08-23 16:44:58 -05:00
|
|
|
match true { true => { } _ => { } }
|
2011-09-15 10:46:07 -05:00
|
|
|
(*regs < 2) as uint
|
|
|
|
}
|
|
|
|
|
2012-01-29 20:33:08 -06:00
|
|
|
fn test8() -> int {
|
2014-10-02 00:10:09 -05:00
|
|
|
let val = &0i;
|
2012-08-23 16:44:58 -05:00
|
|
|
match true {
|
2012-08-03 21:59:04 -05:00
|
|
|
true => { }
|
2012-08-23 16:44:58 -05:00
|
|
|
_ => { }
|
2012-01-29 20:33:08 -06:00
|
|
|
}
|
|
|
|
if *val < 1 {
|
|
|
|
0
|
|
|
|
} else {
|
|
|
|
1
|
|
|
|
}
|
|
|
|
}
|
2011-09-15 10:46:07 -05:00
|
|
|
|
2013-12-31 17:46:27 -06:00
|
|
|
fn test9() {
|
2014-10-02 00:10:09 -05:00
|
|
|
let regs = &Cell::new(0i);
|
2013-12-31 17:46:27 -06:00
|
|
|
match true { true => { } _ => { } } regs.set(regs.get() + 1);
|
|
|
|
}
|
2011-09-15 10:46:07 -05:00
|
|
|
|
|
|
|
fn test10() -> int {
|
2014-10-02 00:10:09 -05:00
|
|
|
let regs = vec!(0i);
|
2012-08-23 16:44:58 -05:00
|
|
|
match true { true => { } _ => { } }
|
2014-03-05 17:28:08 -06:00
|
|
|
*(*regs).get(0)
|
2011-09-15 10:46:07 -05:00
|
|
|
}
|
|
|
|
|
2014-03-05 16:02:44 -06:00
|
|
|
fn test11() -> Vec<int> { if true { } vec!(1, 2) }
|