]> git.lizzy.rs Git - rust.git/blob - src/test/pretty/cast-lt.rs
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[rust.git] / src / test / 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 }