axum/axum-macros/tests/debug_handler/pass/multiple_extractors.rs
David Pedersen 7d88bd3a66
Check for multiple body extractors in debug_handler (#1036)
* Check for multiple body extractors in `debug_handler`

* changelog link
2022-05-16 14:11:40 +00:00

7 lines
156 B
Rust

use axum_macros::debug_handler;
use axum::http::{Method, Uri};
#[debug_handler]
async fn handler(_one: Method, _two: Uri, _three: String) {}
fn main() {}