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

8 lines
128 B
Rust
Raw Normal View History

use axum_macros::debug_handler;
use axum::body::Bytes;
#[debug_handler]
async fn handler(_: String, _: Bytes) {}
fn main() {}