2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2018-09-25 21:51:35 +00:00
|
|
|
#![allow(unused_must_use)]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_assignments)]
|
|
|
|
#![allow(unused_variables)]
|
2018-08-31 13:02:01 +00:00
|
|
|
#![allow(stable_features)]
|
2023-05-19 09:14:55 +00:00
|
|
|
#![allow(dropping_copy_types)]
|
2018-08-31 13:02:01 +00:00
|
|
|
|
2014-12-21 06:03:31 +00:00
|
|
|
// Test parsing binary operators after macro invocations.
|
|
|
|
|
2015-03-22 20:13:15 +00:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-12-21 06:03:31 +00:00
|
|
|
#![feature(macro_rules)]
|
|
|
|
|
|
|
|
macro_rules! id {
|
|
|
|
($e: expr) => { $e }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo() {
|
2015-01-25 21:05:03 +00:00
|
|
|
id!(1) + 1;
|
|
|
|
id![1] - 1;
|
|
|
|
id!(1) * 1;
|
|
|
|
id![1] / 1;
|
|
|
|
id!(1) % 1;
|
2014-12-21 06:03:31 +00:00
|
|
|
|
2015-01-25 21:05:03 +00:00
|
|
|
id!(1) & 1;
|
|
|
|
id![1] | 1;
|
|
|
|
id!(1) ^ 1;
|
2014-12-21 06:03:31 +00:00
|
|
|
|
2015-01-25 21:05:03 +00:00
|
|
|
let mut x = 1;
|
2014-12-21 06:03:31 +00:00
|
|
|
id![x] = 2;
|
|
|
|
id!(x) += 1;
|
|
|
|
|
|
|
|
id!(1f64).clone();
|
|
|
|
|
2015-01-25 21:05:03 +00:00
|
|
|
id!([1, 2, 3])[1];
|
|
|
|
id![drop](1);
|
2014-12-21 06:03:31 +00:00
|
|
|
|
|
|
|
id!(true) && true;
|
|
|
|
id![true] || true;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|