blob: 57d36feb37b13f686537abb097b9041ea95b0d04 [file] [log] [blame]
macro_rules! x {
($($c:tt)*) => {
$($c)รถ* {}
//~^ ERROR missing condition for `if` expression
};
}
fn main() {
x!(if);
}