rust/tests/pretty/block-disambig.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.1 KiB
Rust
Raw Normal View History

//@ compile-flags: --crate-type=lib
// 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 08:02:26 +00:00
2013-12-31 23:46:27 +00:00
use std::cell::Cell;
2015-01-25 21:05:03 +00:00
fn test1() { let val = &0; { } *val; }
fn test2() -> isize { let val = &0; { } *val }
2015-03-30 13:38:27 +00:00
#[derive(Copy, Clone)]
struct S { eax: isize }
2013-01-29 02:55:29 +00:00
fn test3() {
2014-10-02 05:10:09 +00:00
let regs = &Cell::new(S {eax: 0});
2012-08-23 21:44:58 +00:00
match true { true => { } _ => { } }
2013-12-31 23:46:27 +00:00
regs.set(S {eax: 1});
}
2014-10-02 05:10:09 +00:00
fn test4() -> bool { let regs = &true; if true { } *regs || false }
fn test5() -> (isize, isize) { { } (0, 1) }
fn test6() -> bool { { } (true || false) && true }
fn test7() -> usize {
2015-01-25 21:05:03 +00:00
let regs = &0;
2012-08-23 21:44:58 +00:00
match true { true => { } _ => { } }
(*regs < 2) as usize
}
fn test8() -> isize {
2015-01-25 21:05:03 +00:00
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
_ => { }
}
if *val < 1 {
0
} else {
1
}
}
2013-12-31 23:46:27 +00:00
fn test9() {
2015-01-25 21:05:03 +00:00
let regs = &Cell::new(0);
2013-12-31 23:46:27 +00:00
match true { true => { } _ => { } } regs.set(regs.get() + 1);
}
fn test10() -> isize {
let regs = vec![0];
2012-08-23 21:44:58 +00:00
match true { true => { } _ => { } }
2014-10-02 22:12:58 +00:00
regs[0]
}
fn test11() -> Vec<isize> { if true { } vec![1, 2] }