Files
axum/axum-macros/tests/from_request/fail/generic_without_via.rs
T

12 lines
219 B
Rust
Raw Normal View History

2023-03-12 16:37:32 +01:00
use axum::{routing::get, Router};
use axum_macros::FromRequest;
#[derive(FromRequest, Clone)]
struct Extractor<T>(T);
async fn foo(_: Extractor<()>) {}
fn main() {
2023-03-12 16:37:32 +01:00
_ = Router::<()>::new().route("/", get(foo));
}