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