2018-09-16 07:44:47 +00:00
|
|
|
error: expected `,`
|
2020-07-11 17:31:42 +00:00
|
|
|
--> $DIR/catchers.rs:4:25
|
2018-09-16 07:44:47 +00:00
|
|
|
|
|
2020-07-21 17:23:59 +00:00
|
|
|
4 | let _ = catchers![a b];
|
2018-09-16 07:44:47 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: expected identifier
|
2020-07-11 17:31:42 +00:00
|
|
|
--> $DIR/catchers.rs:6:26
|
2018-09-16 07:44:47 +00:00
|
|
|
|
|
2020-07-21 17:23:59 +00:00
|
|
|
6 | let _ = catchers![a::, ];
|
2018-09-16 07:44:47 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unexpected end of input, expected identifier
|
2020-07-11 17:31:42 +00:00
|
|
|
--> $DIR/catchers.rs:7:13
|
2018-09-16 07:44:47 +00:00
|
|
|
|
|
2020-07-21 17:23:59 +00:00
|
|
|
7 | let _ = catchers![a::];
|
2020-02-15 11:51:40 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2021-08-01 19:24:48 +00:00
|
|
|
= note: this error originates in the macro `catchers` (in Nightly builds, run with -Z macro-backtrace for more info)
|