2013-10-01 23:43:15 -05:00
|
|
|
macro_rules! ignored_item {
|
|
|
|
() => {
|
|
|
|
fn foo() {}
|
2013-11-25 01:08:53 -06:00
|
|
|
fn bar() {}
|
|
|
|
, //~ ERROR macro expansion ignores token `,`
|
2013-10-01 23:43:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! ignored_expr {
|
2016-07-02 10:49:50 -05:00
|
|
|
() => ( 1, //~ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `,`
|
2017-11-20 06:13:27 -06:00
|
|
|
|
2016-02-09 21:11:27 -06:00
|
|
|
2 )
|
2013-10-01 23:43:15 -05:00
|
|
|
}
|
|
|
|
|
2014-05-19 17:14:23 -05:00
|
|
|
macro_rules! ignored_pat {
|
|
|
|
() => ( 1, 2 ) //~ ERROR macro expansion ignores token `,`
|
|
|
|
}
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
ignored_item!();
|
2013-10-01 23:43:15 -05:00
|
|
|
|
|
|
|
fn main() {
|
2017-12-10 14:29:24 -06:00
|
|
|
ignored_expr!();
|
2014-05-19 17:14:23 -05:00
|
|
|
match 1 {
|
2017-12-10 14:29:24 -06:00
|
|
|
ignored_pat!() => (),
|
2014-05-19 17:14:23 -05:00
|
|
|
_ => (),
|
|
|
|
}
|
2013-10-01 23:43:15 -05:00
|
|
|
}
|