]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-56806.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-56806.stderr
CommitLineData
1b1a35ee 1error[E0307]: invalid `self` parameter type: Box<(dyn Trait + 'static)>
0731742a
XL
2 --> $DIR/issue-56806.rs:2:34
3 |
4LL | fn dyn_instead_of_self(self: Box<dyn Trait>);
5 | ^^^^^^^^^^^^^^
6 |
e1599b0c 7 = note: type of `self` must be `Self` or a type that dereferences to it
416331ca 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`)
0731742a
XL
9
10error: aborting due to previous error
11
e1599b0c 12For more information about this error, try `rustc --explain E0307`.