2018-02-14 17:25:42 +00:00
|
|
|
// Tests that default impls do not have to supply all items but regular impls do.
|
|
|
|
|
2020-05-17 10:22:48 +02:00
|
|
|
#![feature(specialization)] //~ WARN the feature `specialization` is incomplete
|
2017-10-12 17:38:44 +00:00
|
|
|
|
|
|
|
trait Foo {
|
|
|
|
fn foo_one(&self) -> &'static str;
|
|
|
|
fn foo_two(&self) -> &'static str;
|
|
|
|
}
|
|
|
|
|
2017-10-24 09:55:57 +00:00
|
|
|
struct MyStruct;
|
|
|
|
|
2017-10-12 17:38:44 +00:00
|
|
|
default impl<T> Foo for T {
|
|
|
|
fn foo_one(&self) -> &'static str {
|
|
|
|
"generic"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-24 09:55:57 +00:00
|
|
|
impl Foo for MyStruct {}
|
|
|
|
//~^ ERROR not all trait items implemented, missing: `foo_two` [E0046]
|
2017-10-12 17:38:44 +00:00
|
|
|
|
|
|
|
fn main() {
|
2017-10-24 09:55:57 +00:00
|
|
|
println!("{}", MyStruct.foo_one());
|
2018-02-07 06:58:01 +00:00
|
|
|
}
|