1
Fork 0
rust/src/test/ui/object-does-not-impl-trait.stderr

12 lines
501 B
Text
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0277]: the trait bound `std::boxed::Box<dyn Foo>: Foo` is not satisfied
--> $DIR/object-does-not-impl-trait.rs:6:44
2018-08-08 14:28:26 +02:00
|
LL | fn take_foo<F:Foo>(f: F) {}
2020-04-05 22:15:06 -07:00
| --- required by this bound in `take_foo`
2019-05-28 14:46:13 -04:00
LL | fn take_object(f: Box<dyn Foo>) { take_foo(f); }
| ^ the trait `Foo` is not implemented for `std::boxed::Box<dyn Foo>`
2018-08-08 14:28:26 +02:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.