]> git.lizzy.rs Git - rust.git/blob - src/test/ui/dst/dst-bad-assign-3.stderr
Auto merge of #75936 - sdroege:chunks-exact-construction-bounds-check, r=nagisa
[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 object `dyn ToBar`, found struct `Bar1`
6    |
7    = note: expected trait object `dyn ToBar`
8                     found struct `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: the left-hand-side of an assignment must have a statically known size
18
19 error: aborting due to 2 previous errors
20
21 Some errors have detailed explanations: E0277, E0308.
22 For more information about an error, try `rustc --explain E0277`.