]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-5883.stderr
149d882af78ffd8632488454fc4cff4fc30e4653
[rust.git] / src / test / ui / issues / issue-5883.stderr
1 error[E0277]: the size for values of type `(dyn A + 'static)` cannot be known at compilation time
2   --> $DIR/issue-5883.rs:7:15
3    |
4 LL | fn new_struct(r: dyn A + 'static)
5    |               ^ doesn't have a size known at compile-time
6    |
7    = help: the trait `std::marker::Sized` is not implemented for `(dyn A + 'static)`
8    = note: all local variables must have a statically known size
9    = help: unsized locals are gated as an unstable feature
10
11 error[E0277]: the size for values of type `(dyn A + 'static)` cannot be known at compilation time
12   --> $DIR/issue-5883.rs:8:8
13    |
14 LL |     -> Struct {
15    |        ^^^^^^ doesn't have a size known at compile-time
16 LL |
17 LL |     Struct { r: r }
18    |     --------------- this returned value is of type `Struct`
19    |
20    = help: within `Struct`, the trait `std::marker::Sized` is not implemented for `(dyn A + 'static)`
21    = note: required because it appears within the type `Struct`
22    = note: the return type of a function must have a statically known size
23
24 error: aborting due to 2 previous errors
25
26 For more information about this error, try `rustc --explain E0277`.