blob: 89fef5b5ef9692838a27c0756ace6c2a623543ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// run-pass
// Tests that we can combine a default impl that supplies one method with a
// full impl that supplies the other, and they can invoke one another.
#![feature(specialization)] //~ WARN the feature `specialization` is incomplete
trait Foo {
fn foo_one(&self) -> &'static str;
fn foo_two(&self) -> &'static str;
fn foo_three(&self) -> &'static str;
}
struct MyStruct;
default impl<T> Foo for T {
fn foo_one(&self) -> &'static str {
self.foo_three()
}
}
impl Foo for MyStruct {
fn foo_two(&self) -> &'static str {
self.foo_one()
}
fn foo_three(&self) -> &'static str {
"generic"
}
}
fn main() {
assert!(MyStruct.foo_two() == "generic");
}
|