blob: 1a90b4724d49d259ce76fd049f0b2b19190e7837 [file] [log] [blame]
macro_rules! x {
($($c:tt)*) => {
$($c)รถ* //~ ERROR macro expansion ends with an incomplete expression: expected expression
};
}
fn main() {
x!(!);
}