]> git.lizzy.rs Git - rust.git/blob - src/test/ui/dst/dst-bad-assign-3.stderr
Rollup merge of #100479 - compiler-errors:argument-type-error-improvements, r=lcnr
[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    |     expected due to the type of this binding
8    |
9    = note: expected trait object `dyn ToBar`
10                     found struct `Bar1`
11
12 error[E0277]: the size for values of type `dyn ToBar` cannot be known at compilation time
13   --> $DIR/dst-bad-assign-3.rs:33:5
14    |
15 LL |     f5.2 = Bar1 {f: 36};
16    |     ^^^^ doesn't have a size known at compile-time
17    |
18    = help: the trait `Sized` is not implemented for `dyn ToBar`
19    = note: the left-hand-side of an assignment must have a statically known size
20
21 error: aborting due to 2 previous errors
22
23 Some errors have detailed explanations: E0277, E0308.
24 For more information about an error, try `rustc --explain E0277`.