1
0
Fork 0
mirror of https://github.com/tokio-rs/axum.git synced 2025-01-27 18:29:06 +01:00
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() {}