Sign in
rust
/
rust
/
e17c2f3eccc7436d7f94c6ed4bc8a367f4c6a7fb
/
.
/
tests
/
rustdoc
/
duplicate_impls
/
impls.rs
blob: 6875ad2726d32c4d8f039d3f62faa668f6a485a0 [
file
] [
log
] [
blame
]
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
{}