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

13 lines
253 B
Rust
Raw Normal View History

2023-09-29 07:25:26 +00:00
#![feature(diagnostic_namespace)]
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));
}