mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-25 08:37:29 +01:00
14 lines
406 B
Text
14 lines
406 B
Text
|
error: `#[axum_debug::debug_handler]` doesn't support generic functions
|
||
|
--> tests/fail/generics.rs:4:17
|
||
|
|
|
||
|
4 | async fn handler<T>() {}
|
||
|
| ^^^
|
||
|
|
||
|
error[E0282]: type annotations needed
|
||
|
--> tests/fail/generics.rs:4:10
|
||
|
|
|
||
|
4 | async fn handler<T>() {}
|
||
|
| ----- ^^^^^^^ cannot infer type for type parameter `T` declared on the function `handler`
|
||
|
| |
|
||
|
| consider giving `future` a type
|