mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
22 lines
726 B
Plaintext
22 lines
726 B
Plaintext
error[E0277]: the trait bound `&Box<dyn Fn() -> i32>: Foo` is not satisfied
|
|
--> $DIR/call-on-unimplemented-with-autoderef.rs:8:15
|
|
|
|
|
LL | needs_foo(x);
|
|
| --------- ^ the trait `Foo` is not implemented for `&Box<dyn Fn() -> i32>`
|
|
| |
|
|
| required by a bound introduced by this call
|
|
|
|
|
note: required by a bound in `needs_foo`
|
|
--> $DIR/call-on-unimplemented-with-autoderef.rs:5:22
|
|
|
|
|
LL | fn needs_foo(_: impl Foo) {}
|
|
| ^^^ required by this bound in `needs_foo`
|
|
help: use parentheses to call this trait object
|
|
|
|
|
LL | needs_foo(x());
|
|
| ++
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|