]> git.proxmox.com Git - rustc.git/blame - src/test/ui/traits/bound/not-on-bare-trait.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / traits / bound / not-on-bare-trait.stderr
CommitLineData
dc9dc135 1warning: trait objects without an explicit `dyn` are deprecated
6a06907d 2 --> $DIR/not-on-bare-trait.rs:7:12
dc9dc135
XL
3 |
4LL | fn foo(_x: Foo + Send) {
5 | ^^^^^^^^^^ help: use `dyn`: `dyn Foo + Send`
6 |
416331ca 7 = note: `#[warn(bare_trait_objects)]` on by default
136023e0 8 = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
94222f64 9 = note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
dc9dc135 10
1b1a35ee 11error[E0277]: the size for values of type `(dyn Foo + Send + 'static)` cannot be known at compilation time
6a06907d 12 --> $DIR/not-on-bare-trait.rs:7:8
b7449926
XL
13 |
14LL | fn foo(_x: Foo + Send) {
15 | ^^ doesn't have a size known at compile-time
16 |
1b1a35ee 17 = help: the trait `Sized` is not implemented for `(dyn Foo + Send + 'static)`
29967ef6 18 = help: unsized fn params are gated as an unstable feature
3dfed10e
XL
19help: function arguments must have a statically known size, borrowed types always have a known size
20 |
cdc7bbd5 21LL | fn foo(_x: &Foo + Send) {
94222f64 22 | +
b7449926 23
ba9703b0 24error: aborting due to previous error; 1 warning emitted
b7449926
XL
25
26For more information about this error, try `rustc --explain E0277`.