]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/bound/not-on-bare-trait.stderr
Rollup merge of #97454 - Mark-Simulacrum:relnotes, r=Mark-Simulacrum
[rust.git] / src / test / ui / traits / bound / not-on-bare-trait.stderr
1 warning: trait objects without an explicit `dyn` are deprecated
2   --> $DIR/not-on-bare-trait.rs:7:12
3    |
4 LL | fn foo(_x: Foo + Send) {
5    |            ^^^^^^^^^^
6    |
7    = note: `#[warn(bare_trait_objects)]` on by default
8    = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
9    = note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
10 help: use `dyn`
11    |
12 LL - fn foo(_x: Foo + Send) {
13 LL + fn foo(_x: dyn Foo + Send) {
14    |
15
16 error[E0277]: the size for values of type `(dyn Foo + Send + 'static)` cannot be known at compilation time
17   --> $DIR/not-on-bare-trait.rs:7:8
18    |
19 LL | fn foo(_x: Foo + Send) {
20    |        ^^ doesn't have a size known at compile-time
21    |
22    = help: the trait `Sized` is not implemented for `(dyn Foo + Send + 'static)`
23    = help: unsized fn params are gated as an unstable feature
24 help: function arguments must have a statically known size, borrowed types always have a known size
25    |
26 LL | fn foo(_x: &Foo + Send) {
27    |            +
28
29 error: aborting due to previous error; 1 warning emitted
30
31 For more information about this error, try `rustc --explain E0277`.