2022-10-12 04:32:26 -05:00
|
|
|
error: this attribute can only be applied at the crate level
|
2024-02-29 07:43:11 -06:00
|
|
|
--> $DIR/doc_cfg_hide.rs:6:7
|
2022-10-12 04:32:26 -05:00
|
|
|
|
|
|
|
|
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 07:43:11 -06:00
|
|
|
= note: `#[deny(invalid_doc_attributes)]` on by default
|
2022-10-12 04:32:26 -05:00
|
|
|
help: to apply to the crate, use an inner attribute
|
|
|
|
|
|
|
|
|
LL | #![doc(cfg_hide(doc))]
|
2023-04-25 12:42:42 -05:00
|
|
|
| +
|
2022-10-12 04:32:26 -05:00
|
|
|
|
2024-02-29 00:59:10 -06:00
|
|
|
error: `#[doc(cfg_hide(...))]` takes a list of attributes
|
2024-02-29 07:43:11 -06:00
|
|
|
--> $DIR/doc_cfg_hide.rs:3:8
|
2022-10-12 04:32:26 -05:00
|
|
|
|
|
|
|
|
LL | #![doc(cfg_hide = "test")]
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
2024-02-29 00:59:10 -06:00
|
|
|
error: `#[doc(cfg_hide(...))]` takes a list of attributes
|
2024-02-29 07:43:11 -06:00
|
|
|
--> $DIR/doc_cfg_hide.rs:4:8
|
2022-10-12 04:32:26 -05:00
|
|
|
|
|
|
|
|
LL | #![doc(cfg_hide)]
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|