mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
326 B
Rust
13 lines
326 B
Rust
// run-pass
|
|
|
|
#![allow(unused_must_use)]
|
|
|
|
pub fn main() {
|
|
// Test that lambdas behave as unary expressions with block-like expressions
|
|
-if true { 1 } else { 2 } * 3;
|
|
|| if true { 1 } else { 2 } * 3;
|
|
|
|
// The following is invalid and parses as `if true { 1 } else { 2 }; *3`
|
|
// if true { 1 } else { 2 } * 3
|
|
}
|