]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-56806.stderr
Rollup merge of #91804 - woppopo:const_clone, r=oli-obk
[rust.git] / src / test / ui / issues / issue-56806.stderr
1 error[E0307]: invalid `self` parameter type: Box<(dyn Trait + 'static)>
2   --> $DIR/issue-56806.rs:2:34
3    |
4 LL |     fn dyn_instead_of_self(self: Box<dyn Trait>);
5    |                                  ^^^^^^^^^^^^^^
6    |
7    = note: type of `self` must be `Self` or a type that dereferences to it
8    = help: consider changing to `self`, `&self`, `&mut self`, `self: Box<Self>`, `self: Rc<Self>`, `self: Arc<Self>`, or `self: Pin<P>` (where P is one of the previous types except `Self`)
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0307`.