1+ warning: lint `broken_intra_doc_links` has been renamed to `rustdoc::broken_intra_doc_links`
2+ --> $DIR/renamed-lint-still-applies.rs:2:9
3+ |
4+ LL | #![deny(broken_intra_doc_links)]
5+ | ^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `rustdoc::broken_intra_doc_links`
6+ |
7+ = note: `#[warn(renamed_and_removed_lints)]` on by default
8+
19warning: lint `rustdoc::non_autolinks` has been renamed to `rustdoc::bare_urls`
2- --> $DIR/renamed-lint-still-applies.rs:8 :9
10+ --> $DIR/renamed-lint-still-applies.rs:7 :9
311 |
412LL | #![deny(rustdoc::non_autolinks)]
513 | ^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `rustdoc::bare_urls`
6- |
7- = note: `#[warn(renamed_and_removed_lints)]` on by default
814
915error: unresolved link to `x`
10- --> $DIR/renamed-lint-still-applies.rs:5 :6
16+ --> $DIR/renamed-lint-still-applies.rs:4 :6
1117 |
1218LL | //! [x]
1319 | ^ no item named `x` in scope
@@ -17,21 +23,20 @@ note: the lint level is defined here
1723 |
1824LL | #![deny(broken_intra_doc_links)]
1925 | ^^^^^^^^^^^^^^^^^^^^^^
20- = note: `#[deny(rustdoc::broken_intra_doc_links)]` implied by `#[deny(broken_intra_doc_links)]`
2126 = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
2227
2328error: this URL is not a hyperlink
24- --> $DIR/renamed-lint-still-applies.rs:10 :5
29+ --> $DIR/renamed-lint-still-applies.rs:9 :5
2530 |
2631LL | //! http://example.com
2732 | ^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<http://example.com>`
2833 |
2934note: the lint level is defined here
30- --> $DIR/renamed-lint-still-applies.rs:8 :9
35+ --> $DIR/renamed-lint-still-applies.rs:7 :9
3136 |
3237LL | #![deny(rustdoc::non_autolinks)]
3338 | ^^^^^^^^^^^^^^^^^^^^^^
3439 = note: bare URLs are not automatically turned into clickable links
3540
36- error: aborting due to 2 previous errors; 1 warning emitted
41+ error: aborting due to 2 previous errors; 2 warnings emitted
3742
0 commit comments