Sign in
rust
/
rust
/
df2fe313d44bcc008331a0b01662cfdcaa0ecc90
/
.
/
tests
/
rustdoc-html
/
inline_cross
/
auxiliary
/
default-trait-method.rs
blob: ce60bbfb4b0de0e6f07e6a343a585cd2fdc33a08 [
file
]
#![
feature
(
specialization
)]
#![
crate_name
=
"foo"
]
pub
trait
Item
{
fn
foo
();
fn
bar
();
fn
baz
()
{}
}
pub
struct
Foo
;
impl
Item
for
Foo
{
default
fn
foo
()
{}
fn
bar
()
{}
}