mirror of https://github.com/rwf2/Rocket.git
20 lines
487 B
Plaintext
20 lines
487 B
Plaintext
error: expected `,`
|
|
--> $DIR/routes.rs:4:23
|
|
|
|
|
4 | let _ = routes![a b];
|
|
| ^
|
|
|
|
error: expected identifier
|
|
--> $DIR/routes.rs:6:24
|
|
|
|
|
6 | let _ = routes![a::, ];
|
|
| ^
|
|
|
|
error: unexpected end of input, expected identifier
|
|
--> $DIR/routes.rs:7:13
|
|
|
|
|
7 | let _ = routes![a::];
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
= note: this error originates in the macro `routes` (in Nightly builds, run with -Z macro-backtrace for more info)
|