]> git.lizzy.rs Git - rust.git/blob - src/test/ui/dst/dst-bad-assign-3.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / dst / dst-bad-assign-3.stderr
1 error[E0308]: mismatched types
2   --> $DIR/dst-bad-assign-3.rs:33:12
3    |
4 LL |     f5.2 = Bar1 {f: 36};
5    |            ^^^^^^^^^^^^ expected trait ToBar, found struct `Bar1`
6    |
7    = note: expected type `dyn ToBar`
8               found type `Bar1`
9
10 error[E0277]: the size for values of type `dyn ToBar` cannot be known at compilation time
11   --> $DIR/dst-bad-assign-3.rs:33:5
12    |
13 LL |     f5.2 = Bar1 {f: 36};
14    |     ^^^^ doesn't have a size known at compile-time
15    |
16    = help: the trait `std::marker::Sized` is not implemented for `dyn ToBar`
17    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
18    = note: the left-hand-side of an assignment must have a statically known size
19
20 error: aborting due to 2 previous errors
21
22 Some errors occurred: E0277, E0308.
23 For more information about an error, try `rustc --explain E0277`.