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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
#![feature(trait_upcasting)]
trait Foo: PartialEq<i32> + std::fmt::Debug + Send + Sync {
fn a(&self) -> i32 {
10
}
fn z(&self) -> i32 {
11
}
fn y(&self) -> i32 {
12
}
}
trait Bar: Foo {
fn b(&self) -> i32 {
20
}
fn w(&self) -> i32 {
21
}
}
trait Baz: Bar {
fn c(&self) -> i32 {
30
}
}
impl Foo for i32 {
fn a(&self) -> i32 {
100
}
}
impl Bar for i32 {
fn b(&self) -> i32 {
200
}
}
impl Baz for i32 {
fn c(&self) -> i32 {
300
}
}
fn main() {
let baz: &dyn Baz = &1;
let bar: &dyn Bar = baz;
bar.c();
//~^ ERROR no method named `c` found for reference `&dyn Bar` in the current scope [E0599]
let foo: &dyn Foo = baz;
foo.b();
//~^ ERROR no method named `b` found for reference `&dyn Foo` in the current scope [E0599]
foo.c();
//~^ ERROR no method named `c` found for reference `&dyn Foo` in the current scope [E0599]
let foo: &dyn Foo = bar;
foo.b();
//~^ ERROR no method named `b` found for reference `&dyn Foo` in the current scope [E0599]
foo.c();
//~^ ERROR no method named `c` found for reference `&dyn Foo` in the current scope [E0599]
}
|