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

12 lines
492 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
2019-05-28 14:46:13 -04:00
--> $DIR/object-does-not-impl-trait.rs:6:35
2018-08-08 14:28:26 +02:00
|
LL | fn take_foo<F:Foo>(f: F) {}
| ------------------------ required by `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`.