rust/src/test/pretty/unary-op-disambig.rs
Brian Anderson 518dc52f85 Reformat
This changes the indexing syntax from .() to [], the vector syntax from ~[] to
[] and the extension syntax from #fmt() to #fmt[]
2011-08-20 11:04:00 -07:00

18 lines
394 B
Rust

// Preserve semicolons that disambiguate unops
fn f() { }
fn block_semi() -> int { { f() }; -1 }
fn block_nosemi() -> int { { 0 } - 1 }
fn if_semi() -> int { if true { f() } else { f() }; -1 }
fn if_nosemi() -> int { if true { 0 } else { 0 } - 1 }
fn alt_semi() -> int { alt true { true { f() } }; -1 }
fn alt_no_semi() -> int { alt true { true { 0 } } - 1 }
fn stmt() { { f() }; -1; }