mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
28 lines
768 B
Plaintext
28 lines
768 B
Plaintext
error: this attribute can only be applied at the crate level
|
|
--> $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
|
|
= 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
|
|
--> $DIR/doc_cfg_hide.rs:3:8
|
|
|
|
|
LL | #![doc(cfg_hide = "test")]
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: `#[doc(cfg_hide(...))]` takes a list of attributes
|
|
--> $DIR/doc_cfg_hide.rs:4:8
|
|
|
|
|
LL | #![doc(cfg_hide)]
|
|
| ^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|