2020-08-25 10:02:16 -04:00
|
|
|
error: unknown lint: `x`
|
|
|
|
--> $DIR/unknown-renamed-lints.rs:5:9
|
|
|
|
|
|
|
|
|
LL | #![deny(x)]
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/unknown-renamed-lints.rs:1:9
|
|
|
|
|
|
|
|
|
LL | #![deny(unknown_lints)]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
2020-12-29 23:16:16 -05:00
|
|
|
error: unknown lint: `rustdoc::x`
|
2020-08-25 10:02:16 -04:00
|
|
|
--> $DIR/unknown-renamed-lints.rs:7:9
|
|
|
|
|
|
2020-12-29 23:16:16 -05:00
|
|
|
LL | #![deny(rustdoc::x)]
|
2021-05-05 10:33:14 -05:00
|
|
|
| ^^^^^^^^^^ help: did you mean: `rustdoc::all`
|
2020-12-29 23:16:16 -05:00
|
|
|
|
|
|
|
error: lint `intra_doc_link_resolution_failure` has been renamed to `rustdoc::broken_intra_doc_links`
|
|
|
|
--> $DIR/unknown-renamed-lints.rs:9:9
|
|
|
|
|
|
2020-08-25 10:02:16 -04:00
|
|
|
LL | #![deny(intra_doc_link_resolution_failure)]
|
2020-12-29 23:16:16 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `rustdoc::broken_intra_doc_links`
|
2020-08-25 10:02:16 -04:00
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/unknown-renamed-lints.rs:3:9
|
|
|
|
|
|
|
|
|
LL | #![deny(renamed_and_removed_lints)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2021-03-27 23:35:02 -04:00
|
|
|
error: lint `non_autolinks` has been renamed to `rustdoc::bare_urls`
|
|
|
|
--> $DIR/unknown-renamed-lints.rs:11:9
|
|
|
|
|
|
|
|
|
LL | #![deny(non_autolinks)]
|
|
|
|
| ^^^^^^^^^^^^^ help: use the new name: `rustdoc::bare_urls`
|
|
|
|
|
|
|
|
error: lint `rustdoc::non_autolinks` has been renamed to `rustdoc::bare_urls`
|
|
|
|
--> $DIR/unknown-renamed-lints.rs:13:9
|
|
|
|
|
|
|
|
|
LL | #![deny(rustdoc::non_autolinks)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `rustdoc::bare_urls`
|
|
|
|
|
2021-07-03 15:20:29 -04:00
|
|
|
error: lint `private_doc_tests` has been renamed to `rustdoc::private_doc_tests`
|
|
|
|
--> $DIR/unknown-renamed-lints.rs:16:9
|
|
|
|
|
|
|
|
|
LL | #![deny(private_doc_tests)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: use the new name: `rustdoc::private_doc_tests`
|
|
|
|
|
2021-03-05 09:50:20 -05:00
|
|
|
error: lint `rustdoc` has been removed: use `rustdoc::all` instead
|
2021-07-03 15:20:29 -04:00
|
|
|
--> $DIR/unknown-renamed-lints.rs:19:9
|
2021-03-05 09:50:20 -05:00
|
|
|
|
|
|
|
|
LL | #![deny(rustdoc)]
|
|
|
|
| ^^^^^^^
|
|
|
|
|
2020-12-29 23:16:16 -05:00
|
|
|
error: unknown lint: `rustdoc::intra_doc_link_resolution_failure`
|
2021-07-03 15:20:29 -04:00
|
|
|
--> $DIR/unknown-renamed-lints.rs:23:9
|
2020-12-29 23:16:16 -05:00
|
|
|
|
|
|
|
|
LL | #![deny(rustdoc::intra_doc_link_resolution_failure)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2023-02-16 14:03:31 +00:00
|
|
|
error: aborting due to 8 previous errors
|
2020-08-25 10:02:16 -04:00
|
|
|
|