]> git.proxmox.com Git - rustc.git/blame - src/test/ui/feature-gates/feature-gate-arbitrary_self_types-raw-pointer.stderr
New upstream version 1.43.0+dfsg1
[rustc.git] / src / test / ui / feature-gates / feature-gate-arbitrary_self_types-raw-pointer.stderr
CommitLineData
48663c56 1error[E0658]: `*const Self` cannot be used as the type of `self` without the `arbitrary_self_types` feature
0731742a 2 --> $DIR/feature-gate-arbitrary_self_types-raw-pointer.rs:9:18
ff7c6d11 3 |
0531ce1d 4LL | fn bar(self: *const Self);
ff7c6d11
XL
5 | ^^^^^^^^^^^
6 |
74b04a01 7 = note: see issue #44874 <https://github.com/rust-lang/rust/issues/44874> for more information
416331ca
XL
8 = help: add `#![feature(arbitrary_self_types)]` to the crate attributes to enable
9 = 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`)
ff7c6d11 10
48663c56 11error[E0658]: `*const Foo` cannot be used as the type of `self` without the `arbitrary_self_types` feature
0731742a 12 --> $DIR/feature-gate-arbitrary_self_types-raw-pointer.rs:4:18
ff7c6d11 13 |
0531ce1d 14LL | fn foo(self: *const Self) {}
ff7c6d11
XL
15 | ^^^^^^^^^^^
16 |
74b04a01 17 = note: see issue #44874 <https://github.com/rust-lang/rust/issues/44874> for more information
416331ca
XL
18 = help: add `#![feature(arbitrary_self_types)]` to the crate attributes to enable
19 = 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`)
ff7c6d11 20
48663c56 21error[E0658]: `*const ()` cannot be used as the type of `self` without the `arbitrary_self_types` feature
0731742a 22 --> $DIR/feature-gate-arbitrary_self_types-raw-pointer.rs:14:18
ff7c6d11 23 |
0531ce1d 24LL | fn bar(self: *const Self) {}
ff7c6d11
XL
25 | ^^^^^^^^^^^
26 |
74b04a01 27 = note: see issue #44874 <https://github.com/rust-lang/rust/issues/44874> for more information
416331ca
XL
28 = help: add `#![feature(arbitrary_self_types)]` to the crate attributes to enable
29 = 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`)
ff7c6d11
XL
30
31error: aborting due to 3 previous errors
32
0531ce1d 33For more information about this error, try `rustc --explain E0658`.