2018-09-16 07:44:47 +00:00
|
|
|
error: expected `,`
|
|
|
|
--> $DIR/catchers.rs:6:25
|
|
|
|
|
|
|
|
|
6 | let _ = catchers![a b]; //~ ERROR expected
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: expected identifier
|
|
|
|
--> $DIR/catchers.rs:8:26
|
|
|
|
|
|
|
|
|
8 | let _ = catchers![a::, ]; //~ ERROR expected identifier
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unexpected end of input, expected identifier
|
|
|
|
--> $DIR/catchers.rs:9:13
|
|
|
|
|
|
|
|
|
9 | let _ = catchers![a::]; //~ ERROR expected identifier
|
2019-08-26 19:48:32 +00:00
|
|
|
| ^^^^^^^^^^^^^^ in this macro invocation
|
2018-09-16 07:44:47 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|