]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/object-does-not-impl-trait.stderr
Rollup merge of #99742 - sigaloid:master, r=thomcc
[rust.git] / src / test / ui / traits / object-does-not-impl-trait.stderr
1 error[E0277]: the trait bound `Box<dyn Foo>: Foo` is not satisfied
2   --> $DIR/object-does-not-impl-trait.rs:6:44
3    |
4 LL | fn take_object(f: Box<dyn Foo>) { take_foo(f); }
5    |                                   -------- ^ the trait `Foo` is not implemented for `Box<dyn Foo>`
6    |                                   |
7    |                                   required by a bound introduced by this call
8    |
9 note: required by a bound in `take_foo`
10   --> $DIR/object-does-not-impl-trait.rs:5:15
11    |
12 LL | fn take_foo<F:Foo>(f: F) {}
13    |               ^^^ required by this bound in `take_foo`
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0277`.