]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-65673.stderr
a556e35b6a944d902b963dab0da8105f9060abe7
[rust.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:5
3    |
4 LL |     type Ctx;
5    |          --- associated type defined here
6 ...
7 LL | impl<T> WithType for T {
8    | ---------------------- in this `impl` item
9 LL |     type Ctx = dyn Alias<T>;
10    |     ^^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
11    |
12    = help: the trait `std::marker::Sized` is not implemented for `(dyn Trait + 'static)`
13    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0277`.