]> git.lizzy.rs Git - rust.git/blob - src/test/ui/object-does-not-impl-trait.stderr
Remove licenses
[rust.git] / src / test / ui / object-does-not-impl-trait.stderr
1 error[E0277]: the trait bound `std::boxed::Box<dyn Foo>: Foo` is not satisfied
2   --> $DIR/object-does-not-impl-trait.rs:6:31
3    |
4 LL | fn take_object(f: Box<Foo>) { take_foo(f); }
5    |                               ^^^^^^^^ the trait `Foo` is not implemented for `std::boxed::Box<dyn Foo>`
6    |
7 note: required by `take_foo`
8   --> $DIR/object-does-not-impl-trait.rs:5:1
9    |
10 LL | fn take_foo<F:Foo>(f: F) {}
11    | ^^^^^^^^^^^^^^^^^^^^^^^^
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0277`.