macro_rules! noop { ($($tokens:tt)*) => { ... }; }
Accept any arguments and output nothing.
let mut a = true; noop!(a = false); assert!(a);