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

9 lines
138 B
Rust

use axum::Json;
use axum_macros::debug_handler;
struct Struct {}
#[debug_handler]
async fn handler(_foo: Json<Struct>) {}
fn main() {}