Files
axum/axum-macros/tests/debug_handler/fail/duplicate_args.rs
T

7 lines
110 B
Rust
Raw Normal View History

use axum_macros::debug_handler;
#[debug_handler(state = (), state = ())]
2023-03-12 16:37:32 +01:00
async fn handler() {}
fn main() {}