2024-01-08 17:00:06 -06:00
|
|
|
error: return types are denoted using `->`
|
2024-01-23 12:24:40 -06:00
|
|
|
--> $DIR/avoid-ice-on-warning.rs:4:23
|
2024-01-08 17:00:06 -06:00
|
|
|
|
|
|
|
|
LL | fn call_this<F>(f: F) : Fn(&str) + call_that {}
|
2024-07-05 22:07:46 -05:00
|
|
|
| ^
|
|
|
|
|
|
|
|
|
help: use `->` instead
|
|
|
|
|
|
|
|
|
LL | fn call_this<F>(f: F) -> Fn(&str) + call_that {}
|
|
|
|
| ~~
|
2024-01-08 17:00:06 -06:00
|
|
|
|
|
|
|
error[E0405]: cannot find trait `call_that` in this scope
|
2024-01-23 12:24:40 -06:00
|
|
|
--> $DIR/avoid-ice-on-warning.rs:4:36
|
2024-01-08 17:00:06 -06:00
|
|
|
|
|
|
|
|
LL | fn call_this<F>(f: F) : Fn(&str) + call_that {}
|
|
|
|
| ^^^^^^^^^ not found in this scope
|
|
|
|
|
|
|
|
warning: trait objects without an explicit `dyn` are deprecated
|
2024-01-23 12:24:40 -06:00
|
|
|
--> $DIR/avoid-ice-on-warning.rs:4:25
|
2024-01-08 17:00:06 -06:00
|
|
|
|
|
|
|
|
LL | fn call_this<F>(f: F) : Fn(&str) + call_that {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
|
|
|
|
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
|
|
|
|
= note: `#[warn(bare_trait_objects)]` on by default
|
2024-09-25 03:38:40 -05:00
|
|
|
help: if this is a dyn-compatible trait, use `dyn`
|
2024-01-08 17:00:06 -06:00
|
|
|
|
|
2024-01-23 12:24:40 -06:00
|
|
|
LL | fn call_this<F>(f: F) : dyn Fn(&str) + call_that {}
|
|
|
|
| +++
|
2024-01-08 17:00:06 -06:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors; 1 warning emitted
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0405`.
|