mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 05:57:03 +03:00
8 lines
96 B
Rust
8 lines
96 B
Rust
pub struct Foo<T>(T);
|
|
|
|
impl<T> Foo<T> {
|
|
pub fn new(t: T) -> Foo<T> {
|
|
Foo(t)
|
|
}
|
|
}
|