]> git.lizzy.rs Git - rust.git/blob - tests/pretty/cast-lt.rs
Rollup merge of #107576 - P1n3appl3:master, r=tmandry
[rust.git] / tests / pretty / cast-lt.rs
1 // pretty-compare-only
2 // pretty-mode:expanded
3 // pp-exact:cast-lt.pp
4
5 macro_rules! negative {
6       ($e:expr) => { $e < 0 }
7 }
8
9 fn main() {
10       negative!(1 as i32);
11 }