Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
cross-crate
/
auxiliary
/
aux-9155.rs
blob: 049a96a655a3a22c3189110c6c017c4e5d3c2e18 [
file
] [
log
] [
blame
]
pub
struct
Foo
<
T
>(
T
);
impl
<
T
>
Foo
<
T
>
{
pub
fn
new
(
t
:
T
)
->
Foo
<
T
>
{
Foo
(
t
)
}
}