mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
19 lines
567 B
Plaintext
19 lines
567 B
Plaintext
error: nonexistent builtin attribute `foo df` used in `#[doc(attribute = "...")]`
|
|
--> $DIR/invalid-attribute.rs:6:19
|
|
|
|
|
LL | #[doc(attribute = "foo df")]
|
|
| ^^^^^^^^
|
|
|
|
|
= help: only existing builtin attributes are allowed in core/std
|
|
|
|
error: nonexistent builtin attribute `fooyi` used in `#[doc(attribute = "...")]`
|
|
--> $DIR/invalid-attribute.rs:9:19
|
|
|
|
|
LL | #[doc(attribute = "fooyi")]
|
|
| ^^^^^^^
|
|
|
|
|
= help: only existing builtin attributes are allowed in core/std
|
|
|
|
error: aborting due to 2 previous errors
|
|
|