2020-09-16 23:37:41 +02:00
|
|
|
error: The #[route(..)] macro requires at least one `method` attribute
|
|
|
|
--> $DIR/route-missing-method-fail.rs:3:1
|
|
|
|
|
|
|
|
|
3 | #[route("/")]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
|
|
|
|
error[E0425]: cannot find value `index` in this scope
|
2020-09-25 00:54:01 +02:00
|
|
|
--> $DIR/route-missing-method-fail.rs:12:49
|
2020-09-16 23:37:41 +02:00
|
|
|
|
|
2020-09-25 00:54:01 +02:00
|
|
|
12 | let srv = test::start(|| App::new().service(index));
|
2020-09-16 23:37:41 +02:00
|
|
|
| ^^^^^ not found in this scope
|