axum/axum-macros/tests/debug_handler/fail/argument_not_extractor.rs
2023-09-29 09:25:26 +02:00

7 lines
130 B
Rust

#![feature(diagnostic_namespace)]
use axum_macros::debug_handler;
#[debug_handler]
async fn handler(_foo: bool) {}
fn main() {}