mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
27 lines
821 B
Rust
27 lines
821 B
Rust
#![feature(min_specialization)]
|
|
|
|
// @has default_trait_method/trait.Item.html
|
|
// @has - '//*[@id="tymethod.foo"]' 'fn foo()'
|
|
// @!has - '//*[@id="tymethod.foo"]' 'default fn foo()'
|
|
// @has - '//*[@id="tymethod.bar"]' 'fn bar()'
|
|
// @!has - '//*[@id="tymethod.bar"]' 'default fn bar()'
|
|
// @has - '//*[@id="method.baz"]' 'fn baz()'
|
|
// @!has - '//*[@id="method.baz"]' 'default fn baz()'
|
|
pub trait Item {
|
|
fn foo();
|
|
fn bar();
|
|
fn baz() {}
|
|
}
|
|
|
|
// @has default_trait_method/struct.Foo.html
|
|
// @has - '//*[@id="method.foo"]' 'default fn foo()'
|
|
// @has - '//*[@id="method.bar"]' 'fn bar()'
|
|
// @!has - '//*[@id="method.bar"]' 'default fn bar()'
|
|
// @has - '//*[@id="method.baz"]' 'fn baz()'
|
|
// @!has - '//*[@id="method.baz"]' 'default fn baz()'
|
|
pub struct Foo;
|
|
impl Item for Foo {
|
|
default fn foo() {}
|
|
fn bar() {}
|
|
}
|