2025-08-10 11:54:15 -04:00

8 lines
96 B
Rust

pub struct Foo<T>(T);
impl<T> Foo<T> {
pub fn new(t: T) -> Foo<T> {
Foo(t)
}
}