axum/axum-macros/tests/debug_handler/fail/multiple_paths.rs

8 lines
143 B
Rust
Raw Normal View History

use axum::extract::Path;
use axum_macros::debug_handler;
#[debug_handler]
async fn handler(_: Path<String>, _: Path<String>) {}
fn main() {}