2018-10-06 11:18:06 -05:00
|
|
|
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
|
2018-10-11 05:16:22 -05:00
|
|
|
|
2017-09-18 05:47:33 -05:00
|
|
|
|
|
|
|
|
2018-07-28 10:34:52 -05:00
|
|
|
#[warn(clippy::precedence)]
|
|
|
|
#[allow(clippy::identity_op)]
|
|
|
|
#[allow(clippy::eq_op)]
|
2018-01-16 08:52:16 -06:00
|
|
|
|
|
|
|
macro_rules! trip {
|
|
|
|
($a:expr) => {
|
|
|
|
match $a & 0b1111_1111i8 {
|
|
|
|
0 => println!("a is zero ({})", $a),
|
|
|
|
_ => println!("a is {}", $a),
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2015-05-06 05:59:08 -05:00
|
|
|
fn main() {
|
2017-01-22 07:51:13 -06:00
|
|
|
1 << 2 + 3;
|
|
|
|
1 + 2 << 3;
|
|
|
|
4 >> 1 + 1;
|
|
|
|
1 + 3 >> 2;
|
|
|
|
1 ^ 1 - 1;
|
|
|
|
3 | 2 - 1;
|
|
|
|
3 & 5 - 2;
|
|
|
|
-1i32.abs();
|
|
|
|
-1f32.abs();
|
2017-02-08 07:58:07 -06:00
|
|
|
|
2015-08-30 10:32:35 -05:00
|
|
|
// These should not trigger an error
|
|
|
|
let _ = (-1i32).abs();
|
|
|
|
let _ = (-1f32).abs();
|
|
|
|
let _ = -(1i32).abs();
|
|
|
|
let _ = -(1f32).abs();
|
|
|
|
let _ = -(1i32.abs());
|
|
|
|
let _ = -(1f32.abs());
|
2018-01-16 08:52:16 -06:00
|
|
|
|
|
|
|
let b = 3;
|
|
|
|
trip!(b * 8);
|
2015-05-06 05:59:08 -05:00
|
|
|
}
|