axum/axum-macros/tests/from_ref/fail/generics.rs

9 lines
104 B
Rust
Raw Normal View History

use axum::extract::FromRef;
#[derive(Clone, FromRef)]
struct AppState<T> {
foo: T,
}
fn main() {}