2018-02-14 17:25:42 +00:00
|
|
|
// Tests that:
|
|
|
|
// - default impls do not have to supply all items and
|
|
|
|
// - a default impl does not count as an impl (in this case, an incomplete default impl).
|
|
|
|
|
2020-05-17 08:22:48 +00: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"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2017-10-24 09:55:57 +00:00
|
|
|
println!("{}", MyStruct.foo_one());
|
2020-09-26 21:20:14 +00:00
|
|
|
//~^ ERROR the method
|
2018-02-07 06:58:01 +00:00
|
|
|
}
|