2019-01-06 18:33:05 +03:00
|
|
|
macro_rules! foo { ($($tt:tt)*) => () }
|
2015-02-09 20:01:45 +01:00
|
|
|
|
2014-02-24 00:53:59 +11:00
|
|
|
fn main() {
|
|
|
|
|
foo! {
|
|
|
|
|
bar, "baz", 1, 2.0
|
2020-01-03 08:40:15 -05:00
|
|
|
) //~ ERROR mismatched closing delimiter
|
2014-02-24 00:53:59 +11:00
|
|
|
}
|