mirror of
https://github.com/rwf2/Rocket.git
synced 2025-02-15 13:12:17 +00:00
20 lines
570 B
Plaintext
20 lines
570 B
Plaintext
error: expected `,`
|
|
--> $DIR/routes.rs:6:23
|
|
|
|
|
6 | let _ = routes![a b]; //~ ERROR expected `,`
|
|
| ^
|
|
|
|
error: expected identifier
|
|
--> $DIR/routes.rs:8:24
|
|
|
|
|
8 | let _ = routes![a::, ]; //~ ERROR expected identifier
|
|
| ^
|
|
|
|
error: unexpected end of input, expected identifier
|
|
--> $DIR/routes.rs:9:13
|
|
|
|
|
9 | let _ = routes![a::]; //~ ERROR expected identifier
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
= note: this error originates in the macro `routes` (in Nightly builds, run with -Z macro-backtrace for more info)
|