]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-ui/doc-test-attr.stderr
Auto merge of #106646 - Amanieu:ilp32-object, r=Mark-Simulacrum
[rust.git] / tests / rustdoc-ui / doc-test-attr.stderr
1 error: `#[doc(test(...)]` takes a list of attributes
2   --> $DIR/doc-test-attr.rs:4:8
3    |
4 LL | #![doc(test)]
5    |        ^^^^
6    |
7    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
8    = 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-test-attr.rs:2:9
11    |
12 LL | #![deny(invalid_doc_attributes)]
13    |         ^^^^^^^^^^^^^^^^^^^^^^
14
15 error: `#[doc(test(...)]` takes a list of attributes
16   --> $DIR/doc-test-attr.rs:7:8
17    |
18 LL | #![doc(test = "hello")]
19    |        ^^^^^^^^^^^^^^
20    |
21    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
22    = note: for more information, see issue #82730 <https://github.com/rust-lang/rust/issues/82730>
23
24 error: unknown `doc(test)` attribute `a`
25   --> $DIR/doc-test-attr.rs:10:13
26    |
27 LL | #![doc(test(a))]
28    |             ^
29    |
30    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
31    = note: for more information, see issue #82730 <https://github.com/rust-lang/rust/issues/82730>
32
33 error: aborting due to 3 previous errors
34