We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48f7148 commit fa2824aCopy full SHA for fa2824a
tests/ui/rustdoc/doc-primitive.rs
@@ -0,0 +1,8 @@
1
+#![deny(invalid_doc_attributes)]
2
+
3
+#[doc(primitive = "foo")]
4
+//~^ ERROR unknown `doc` attribute `primitive`
5
+//~| WARN
6
+mod bar {}
7
8
+fn main() {}
tests/ui/rustdoc/doc-primitive.stderr
@@ -0,0 +1,16 @@
+error: unknown `doc` attribute `primitive`
+ --> $DIR/doc-primitive.rs:3:7
+ |
+LL | #[doc(primitive = "foo")]
+ | ^^^^^^^^^^^^^^^^^
+ = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
+ = note: for more information, see issue #82730 <https://github.com/rust-lang/rust/issues/82730>
9
+note: the lint level is defined here
10
+ --> $DIR/doc-primitive.rs:1:9
11
12
+LL | #![deny(invalid_doc_attributes)]
13
+ | ^^^^^^^^^^^^^^^^^^^^^^
14
15
+error: aborting due to previous error
16
0 commit comments