rust/tests/rustdoc-ui/lints/doc_cfg_hide.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
768 B
Plaintext
Raw Normal View History

error: this attribute can only be applied at the crate level
2024-02-29 21:43:11 +08:00
--> $DIR/doc_cfg_hide.rs:6:7
|
LL | #[doc(cfg_hide(doc))]
| ^^^^^^^^^^^^^
|
= note: read <https://doc.rust-lang.org/nightly/rustdoc/the-doc-attribute.html#at-the-crate-level> for more information
2024-02-29 21:43:11 +08:00
= note: `#[deny(invalid_doc_attributes)]` on by default
help: to apply to the crate, use an inner attribute
|
LL | #![doc(cfg_hide(doc))]
| +
error: `#[doc(cfg_hide(...))]` takes a list of attributes
2024-02-29 21:43:11 +08:00
--> $DIR/doc_cfg_hide.rs:3:8
|
LL | #![doc(cfg_hide = "test")]
| ^^^^^^^^^^^^^^^^^
error: `#[doc(cfg_hide(...))]` takes a list of attributes
2024-02-29 21:43:11 +08:00
--> $DIR/doc_cfg_hide.rs:4:8
|
LL | #![doc(cfg_hide)]
| ^^^^^^^^
error: aborting due to 3 previous errors