2018-09-16 07:44:47 +00:00
|
|
|
error: expected `,`
|
2020-07-11 17:31:42 +00:00
|
|
|
--> $DIR/routes.rs:4:23
|
2018-06-28 15:55:15 +00:00
|
|
|
|
|
2020-07-21 17:23:59 +00:00
|
|
|
4 | let _ = routes![a b];
|
2018-06-28 15:55:15 +00:00
|
|
|
| ^
|
|
|
|
|
2018-09-16 07:44:47 +00:00
|
|
|
error: expected identifier
|
2020-07-11 17:31:42 +00:00
|
|
|
--> $DIR/routes.rs:6:24
|
2018-09-16 07:44:47 +00:00
|
|
|
|
|
2020-07-21 17:23:59 +00:00
|
|
|
6 | let _ = routes![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/routes.rs:7:13
|
2018-09-16 07:44:47 +00:00
|
|
|
|
|
2020-07-21 17:23:59 +00:00
|
|
|
7 | let _ = routes![a::];
|
2020-02-15 11:51:40 +00:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
2021-05-18 19:00:46 +00:00
|
|
|
= note: this error originates in the macro `routes` (in Nightly builds, run with -Z macro-backtrace for more info)
|