rust/tests/ui/issues/auxiliary/issue-9155.rs

8 lines
96 B
Rust

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