rust/tests/pretty/cast-lt.rs

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

12 lines
172 B
Rust
Raw Permalink Normal View History

2017-11-06 04:27:46 +08:00
//@ pretty-compare-only
//@ pretty-mode:expanded
//@ pp-exact:cast-lt.pp
macro_rules! negative {
($e:expr) => { $e < 0 }
}
fn main() {
negative!(1 as i32);
}