]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-65673.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-65673.stderr
1 error[E0277]: the size for values of type `(dyn Trait + 'static)` cannot be known at compilation time
2 --> $DIR/issue-65673.rs:9:16
3 |
4 LL | trait WithType {
5 | -------- required by a bound in this
6 LL | type Ctx;
7 | --------- required by this bound in `WithType`
8 ...
9 LL | type Ctx = dyn Alias<T>;
10 | ^^^^^^^^^^^^ doesn't have a size known at compile-time
11 |
12 = help: the trait `Sized` is not implemented for `(dyn Trait + 'static)`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0277`.