diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-08-28 21:41:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-28 21:41:00 +0200 |
| commit | f948c79911844709ad8aeea23b211fb9790257c7 (patch) | |
| tree | 21eee94893fd60d7cfa906db0156556405f67dfb /tests/rustdoc-ui/invalid-attribute.rs | |
| parent | 1f7dcc878d73c45cc40018aac6e5c767446df110 (diff) | |
| parent | f3c023433f6e44be208f9e3bb74528449da730c1 (diff) | |
| download | rust-f948c79911844709ad8aeea23b211fb9790257c7.tar.gz rust-f948c79911844709ad8aeea23b211fb9790257c7.zip | |
Rollup merge of #142472 - GuillaumeGomez:doc-attribute-attribute, r=fmease
Add new `doc(attribute = "...")` attribute Fixes rust-lang/rust#141123. The implementation and purpose of this new `#[doc(attribute = "...")]` attribute is very close to `#[doc(keyword = "...")]`. Which means that luckily for us, most of the code needed was already in place and `@Noratrieb` nicely wrote a first draft that helped me implement this new attribute very fast. Now with all this said, there is one thing I didn't do yet: adding a `rustdoc-js-std` test. I added GUI tests with search results for attributes so should be fine but I still plan on adding one for it once documentation for builtin attributes will be written into the core/std libs. You can test it [here](https://rustdoc.crud.net/imperio/doc-attribute-attribute/foo/index.html). cc `@Noratrieb` `@Veykril`
Diffstat (limited to 'tests/rustdoc-ui/invalid-attribute.rs')
| -rw-r--r-- | tests/rustdoc-ui/invalid-attribute.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/rustdoc-ui/invalid-attribute.rs b/tests/rustdoc-ui/invalid-attribute.rs new file mode 100644 index 00000000000..2fc7be2cf34 --- /dev/null +++ b/tests/rustdoc-ui/invalid-attribute.rs @@ -0,0 +1,10 @@ +// Testing the output when an invalid builtin attribute is passed as value +// to `doc(attribute = "...")`. + +#![feature(rustdoc_internals)] + +#[doc(attribute = "foo df")] //~ ERROR +mod foo {} + +#[doc(attribute = "fooyi")] //~ ERROR +mod foo2 {} |
