Sign in
rust
/
rust
/
b1c7595965ea1595b56fda5e12e5a8a45eb38136
/
.
/
tests
/
rustdoc-html
/
duplicate_impls
/
impls.rs
blob: 6875ad2726d32c4d8f039d3f62faa668f6a485a0 [
file
]
pub
struct
Foo
;
// just so that `Foo` doesn't show up on `Bar`s sidebar
pub
mod
bar
{
pub
trait
Bar
{}
}
impl
Foo
{
pub
fn
new
()
->
Foo
{
Foo
}
}
impl
bar
::
Bar
for
Foo
{}