1error[E0658]: linking to associated items of raw pointers is experimental
2  --> $DIR/feature-gate-intra-doc-pointers.rs:1:6
3   |
4LL | //! [pointer::add]
5   |      ^^^^^^^^^^^^
6   |
7   = note: see issue #80896 <https://github.com/rust-lang/rust/issues/80896> for more information
8   = help: add `#![feature(intra_doc_pointers)]` to the crate attributes to enable
9   = note: rustdoc does not allow disambiguating between `*const` and `*mut`, and pointers are unstable until it does
10
11error[E0658]: linking to associated items of raw pointers is experimental
12  --> $DIR/feature-gate-intra-doc-pointers.rs:3:6
13   |
14LL | //! [pointer::wrapping_add]
15   |      ^^^^^^^^^^^^^^^^^^^^^
16   |
17   = note: see issue #80896 <https://github.com/rust-lang/rust/issues/80896> for more information
18   = help: add `#![feature(intra_doc_pointers)]` to the crate attributes to enable
19   = note: rustdoc does not allow disambiguating between `*const` and `*mut`, and pointers are unstable until it does
20
21error: aborting due to 2 previous errors
22
23For more information about this error, try `rustc --explain E0658`.
24