]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-ui/renamed-lint-still-applies.stderr
Auto merge of #82992 - philippeitis:stabilize_bufreader_seek_relative, r=workingjubilee
[rust.git] / src / test / rustdoc-ui / renamed-lint-still-applies.stderr
1 warning: lint `rustdoc::non_autolinks` has been renamed to `rustdoc::bare_urls`
2   --> $DIR/renamed-lint-still-applies.rs:8:9
3    |
4 LL | #![deny(rustdoc::non_autolinks)]
5    |         ^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `rustdoc::bare_urls`
6    |
7    = note: `#[warn(renamed_and_removed_lints)]` on by default
8
9 error: unresolved link to `x`
10   --> $DIR/renamed-lint-still-applies.rs:5:6
11    |
12 LL | //! [x]
13    |      ^ no item named `x` in scope
14    |
15 note: the lint level is defined here
16   --> $DIR/renamed-lint-still-applies.rs:2:9
17    |
18 LL | #![deny(broken_intra_doc_links)]
19    |         ^^^^^^^^^^^^^^^^^^^^^^
20    = note: `#[deny(rustdoc::broken_intra_doc_links)]` implied by `#[deny(broken_intra_doc_links)]`
21    = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
22
23 error: this URL is not a hyperlink
24   --> $DIR/renamed-lint-still-applies.rs:10:5
25    |
26 LL | //! http://example.com
27    |     ^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<http://example.com>`
28    |
29 note: the lint level is defined here
30   --> $DIR/renamed-lint-still-applies.rs:8:9
31    |
32 LL | #![deny(rustdoc::non_autolinks)]
33    |         ^^^^^^^^^^^^^^^^^^^^^^
34
35 error: aborting due to 2 previous errors; 1 warning emitted
36