rust/tests/ui/parser/macro/macro-incomplete-parse.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
492 B
Rust
Raw Normal View History

macro_rules! ignored_item {
() => {
fn foo() {}
fn bar() {}
, //~ ERROR macro expansion ignores token `,`
}
}
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 )
}
2014-05-19 22:14:23 +00:00
macro_rules! ignored_pat {
() => ( 1, 2 ) //~ ERROR macro expansion ignores token `,`
}
ignored_item!();
fn main() {
ignored_expr!();
2014-05-19 22:14:23 +00:00
match 1 {
ignored_pat!() => (),
2014-05-19 22:14:23 +00:00
_ => (),
}
}