blob: 97fb564bf647958f7d37926e23d388a7beecc84f [file] [log] [blame]
macro_rules! bah {
($a:expr) => {
$a
}; //~^ ERROR macro expansion ignores token `2` and any following
}
trait Bar {
bah!(2);
}
fn main() {
let _recovery_witness: () = 0; //~ ERROR mismatched types
}