axum/axum-macros/tests/debug_handler/fail/generics.rs
2023-09-29 09:25:26 +02:00

6 lines
100 B
Rust

use axum_macros::debug_handler;
#[debug_handler]
async fn handler<T>(_extract: T) {}
fn main() {}