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