]> git.lizzy.rs Git - rust.git/blob - src/test/ui/object-does-not-impl-trait.stderr
Auto merge of #81507 - weiznich:add_diesel_to_cargo_test, r=Mark-Simulacrum
[rust.git] / src / test / ui / 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_foo<F:Foo>(f: F) {}
5    |               --- required by this bound in `take_foo`
6 LL | fn take_object(f: Box<dyn Foo>) { take_foo(f); }
7    |                                            ^ the trait `Foo` is not implemented for `Box<dyn Foo>`
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0277`.