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