|
| 1 | +error[E0658]: `*const Bar` cannot be used as the type of `self` without the `arbitrary_self_types_pointers` feature |
| 2 | + --> $DIR/feature-gate-arbitrary-self-types-pointers.rs:11:18 |
| 3 | + | |
| 4 | +LL | fn foo(self: *const Self) {} |
| 5 | + | ^^^^^^^^^^^ |
| 6 | + | |
| 7 | + = note: see issue #44874 <https://github.com/rust-lang/rust/issues/44874> for more information |
| 8 | + = help: add `#![feature(arbitrary_self_types_pointers)]` to the crate attributes to enable |
| 9 | + = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date |
| 10 | + = help: consider changing to `self`, `&self`, `&mut self`, or a type implementing `Receiver` such as `self: Box<Self>`, `self: Rc<Self>`, or `self: Arc<Self>` |
| 11 | + |
| 12 | +error[E0658]: `*mut Bar` cannot be used as the type of `self` without the `arbitrary_self_types_pointers` feature |
| 13 | + --> $DIR/feature-gate-arbitrary-self-types-pointers.rs:15:18 |
| 14 | + | |
| 15 | +LL | fn bar(self: *mut Self) {} |
| 16 | + | ^^^^^^^^^ |
| 17 | + | |
| 18 | + = note: see issue #44874 <https://github.com/rust-lang/rust/issues/44874> for more information |
| 19 | + = help: add `#![feature(arbitrary_self_types_pointers)]` to the crate attributes to enable |
| 20 | + = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date |
| 21 | + = help: consider changing to `self`, `&self`, `&mut self`, or a type implementing `Receiver` such as `self: Box<Self>`, `self: Rc<Self>`, or `self: Arc<Self>` |
| 22 | + |
| 23 | +error[E0658]: `*const Self` cannot be used as the type of `self` without the `arbitrary_self_types_pointers` feature |
| 24 | + --> $DIR/feature-gate-arbitrary-self-types-pointers.rs:5:18 |
| 25 | + | |
| 26 | +LL | fn foo(self: *const Self); |
| 27 | + | ^^^^^^^^^^^ |
| 28 | + | |
| 29 | + = note: see issue #44874 <https://github.com/rust-lang/rust/issues/44874> for more information |
| 30 | + = help: add `#![feature(arbitrary_self_types_pointers)]` to the crate attributes to enable |
| 31 | + = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date |
| 32 | + = help: consider changing to `self`, `&self`, `&mut self`, or a type implementing `Receiver` such as `self: Box<Self>`, `self: Rc<Self>`, or `self: Arc<Self>` |
| 33 | + |
| 34 | +error: aborting due to 3 previous errors |
| 35 | + |
| 36 | +For more information about this error, try `rustc --explain E0658`. |
0 commit comments