Files
axum/axum-macros/tests/debug_handler/pass/deny_unreachable_code.rs
T

9 lines
141 B
Rust

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