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