1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 16:32:59 +01:00
actix-web/actix-web-codegen/tests/trybuild/route-unexpected-method-fail.stderr

12 lines
425 B
Plaintext
Raw Normal View History

2020-09-22 23:42:51 +02:00
error: Unexpected HTTP method: `UNEXPECTED`
--> $DIR/route-unexpected-method-fail.rs:3:21
|
3 | #[route("/", method="UNEXPECTED")]
| ^^^^^^^^^^^^
error[E0425]: cannot find value `index` in this scope
2020-09-25 00:54:01 +02:00
--> $DIR/route-unexpected-method-fail.rs:12:49
|
2020-09-25 00:54:01 +02:00
12 | let srv = test::start(|| App::new().service(index));
| ^^^^^ not found in this scope