Files
axum/axum-macros/tests/debug_handler/fail/generics.stderr
T

14 lines
435 B
Plaintext
Raw Normal View History

2022-01-26 23:27:22 +01:00
error: `#[axum_macros::debug_handler]` doesn't support generic functions
--> tests/debug_handler/fail/generics.rs:4:17
2021-11-19 21:32:07 +01:00
|
4 | async fn handler<T>() {}
| ^^^
error[E0282]: type annotations needed
2022-01-26 23:27:22 +01:00
--> tests/debug_handler/fail/generics.rs:4:10
2021-11-19 21:32:07 +01:00
|
4 | async fn handler<T>() {}
| ----- ^^^^^^^ cannot infer type for type parameter `T` declared on the function `handler`
| |
| consider giving `future` a type