]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-ui/unknown-renamed-lints.stderr
Merge commit '7d53619064ab7045c383644cb445052d2a3d46db' into sync_cg_clif-2023-02-09
[rust.git] / tests / rustdoc-ui / unknown-renamed-lints.stderr
1 error: unknown lint: `x`
2   --> $DIR/unknown-renamed-lints.rs:5:9
3    |
4 LL | #![deny(x)]
5    |         ^
6    |
7 note: the lint level is defined here
8   --> $DIR/unknown-renamed-lints.rs:1:9
9    |
10 LL | #![deny(unknown_lints)]
11    |         ^^^^^^^^^^^^^
12
13 error: unknown lint: `rustdoc::x`
14   --> $DIR/unknown-renamed-lints.rs:7:9
15    |
16 LL | #![deny(rustdoc::x)]
17    |         ^^^^^^^^^^ help: did you mean: `rustdoc::all`
18
19 error: lint `intra_doc_link_resolution_failure` has been renamed to `rustdoc::broken_intra_doc_links`
20   --> $DIR/unknown-renamed-lints.rs:9:9
21    |
22 LL | #![deny(intra_doc_link_resolution_failure)]
23    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `rustdoc::broken_intra_doc_links`
24    |
25 note: the lint level is defined here
26   --> $DIR/unknown-renamed-lints.rs:3:9
27    |
28 LL | #![deny(renamed_and_removed_lints)]
29    |         ^^^^^^^^^^^^^^^^^^^^^^^^^
30
31 error: lint `non_autolinks` has been renamed to `rustdoc::bare_urls`
32   --> $DIR/unknown-renamed-lints.rs:11:9
33    |
34 LL | #![deny(non_autolinks)]
35    |         ^^^^^^^^^^^^^ help: use the new name: `rustdoc::bare_urls`
36
37 error: lint `rustdoc::non_autolinks` has been renamed to `rustdoc::bare_urls`
38   --> $DIR/unknown-renamed-lints.rs:13:9
39    |
40 LL | #![deny(rustdoc::non_autolinks)]
41    |         ^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `rustdoc::bare_urls`
42
43 error: lint `private_doc_tests` has been renamed to `rustdoc::private_doc_tests`
44   --> $DIR/unknown-renamed-lints.rs:16:9
45    |
46 LL | #![deny(private_doc_tests)]
47    |         ^^^^^^^^^^^^^^^^^ help: use the new name: `rustdoc::private_doc_tests`
48
49 error: lint `rustdoc` has been removed: use `rustdoc::all` instead
50   --> $DIR/unknown-renamed-lints.rs:19:9
51    |
52 LL | #![deny(rustdoc)]
53    |         ^^^^^^^
54
55 error: unknown lint: `rustdoc::intra_doc_link_resolution_failure`
56   --> $DIR/unknown-renamed-lints.rs:23:9
57    |
58 LL | #![deny(rustdoc::intra_doc_link_resolution_failure)]
59    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
60
61 error: Compilation failed, aborting rustdoc
62
63 error: aborting due to 9 previous errors
64