]> git.proxmox.com Git - rustc.git/blame - src/test/ui/async-await/issue-66312.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / async-await / issue-66312.stderr
CommitLineData
ba9703b0
XL
1error[E0307]: invalid `self` parameter type: T
2 --> $DIR/issue-66312.rs:4:22
3 |
4LL | fn is_some(self: T);
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
10error: aborting due to previous error
11
12For more information about this error, try `rustc --explain E0307`.