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