2022-12-12 13:23:20 -06:00
|
|
|
error[E0061]: this function takes 1 argument but 0 arguments were supplied
|
|
|
|
--> $DIR/display-is-suggestable.rs:6:5
|
|
|
|
|
|
|
|
|
LL | foo();
|
2024-05-12 02:40:59 -05:00
|
|
|
| ^^^-- argument #1 of type `&dyn std::fmt::Display + Send` is missing
|
2022-12-12 13:23:20 -06:00
|
|
|
|
|
|
|
|
note: function defined here
|
|
|
|
--> $DIR/display-is-suggestable.rs:3:4
|
|
|
|
|
|
|
|
|
LL | fn foo(x: &(dyn Display + Send)) {}
|
|
|
|
| ^^^ ------------------------
|
|
|
|
help: provide the argument
|
|
|
|
|
|
|
|
|
LL | foo(/* &dyn std::fmt::Display + Send */);
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-12-12 13:23:20 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0061`.
|