rust/tests/rustdoc-ui/lints/redundant_explicit_links.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

134 lines
3.8 KiB
Plaintext
Raw Normal View History

2023-06-29 13:01:21 -05:00
error: redundant explicit rustdoc link
--> $DIR/redundant_explicit_links.rs:5:20
|
LL | /// [dummy_target](dummy_target)
| ^^^^^^^^^^^^
|
= note: Explicit link does not affect the original link
note: the lint level is defined here
--> $DIR/redundant_explicit_links.rs:1:9
|
LL | #![deny(rustdoc::redundant_explicit_links)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= help: Remove explicit link instead
error: redundant explicit rustdoc link
--> $DIR/redundant_explicit_links.rs:6:22
|
LL | /// [`dummy_target`](dummy_target)
| ^^^^^^^^^^^^
|
= note: Explicit link does not affect the original link
= help: Remove explicit link instead
error: redundant explicit rustdoc link
2023-06-29 13:10:55 -05:00
--> $DIR/redundant_explicit_links.rs:8:11
2023-06-29 13:01:21 -05:00
|
LL | /// [Vec](Vec)
| ^^^
|
= note: Explicit link does not affect the original link
= help: Remove explicit link instead
error: redundant explicit rustdoc link
2023-06-29 13:10:55 -05:00
--> $DIR/redundant_explicit_links.rs:9:13
2023-06-29 13:01:21 -05:00
|
LL | /// [`Vec`](Vec)
| ^^^
|
= note: Explicit link does not affect the original link
= help: Remove explicit link instead
error: redundant explicit rustdoc link
2023-06-29 13:10:55 -05:00
--> $DIR/redundant_explicit_links.rs:10:11
2023-06-29 13:01:21 -05:00
|
LL | /// [Vec](std::vec::Vec)
| ^^^^^^^^^^^^^
|
= note: Explicit link does not affect the original link
= help: Remove explicit link instead
error: redundant explicit rustdoc link
2023-06-29 13:10:55 -05:00
--> $DIR/redundant_explicit_links.rs:11:13
2023-06-29 13:01:21 -05:00
|
LL | /// [`Vec`](std::vec::Vec)
| ^^^^^^^^^^^^^
|
= note: Explicit link does not affect the original link
= help: Remove explicit link instead
error: redundant explicit rustdoc link
2023-06-29 13:10:55 -05:00
--> $DIR/redundant_explicit_links.rs:14:21
2023-06-29 13:01:21 -05:00
|
LL | /// [std::vec::Vec](std::vec::Vec)
| ^^^^^^^^^^^^^
|
= note: Explicit link does not affect the original link
= help: Remove explicit link instead
error: redundant explicit rustdoc link
2023-06-29 13:10:55 -05:00
--> $DIR/redundant_explicit_links.rs:15:23
2023-06-29 13:01:21 -05:00
|
LL | /// [`std::vec::Vec`](std::vec::Vec)
| ^^^^^^^^^^^^^
|
= note: Explicit link does not affect the original link
= help: Remove explicit link instead
error: redundant explicit rustdoc link
2023-06-29 13:10:55 -05:00
--> $DIR/redundant_explicit_links.rs:17:13
2023-06-29 13:01:21 -05:00
|
LL | /// [usize](usize)
| ^^^^^
|
= note: Explicit link does not affect the original link
= help: Remove explicit link instead
error: redundant explicit rustdoc link
2023-06-29 13:10:55 -05:00
--> $DIR/redundant_explicit_links.rs:18:15
2023-06-29 13:01:21 -05:00
|
LL | /// [`usize`](usize)
| ^^^^^
|
= note: Explicit link does not affect the original link
= help: Remove explicit link instead
2023-06-29 13:10:55 -05:00
error: redundant explicit rustdoc link
--> $DIR/redundant_explicit_links.rs:19:13
|
LL | /// [usize](std::primitive::usize)
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: Explicit link does not affect the original link
= help: Remove explicit link instead
error: redundant explicit rustdoc link
--> $DIR/redundant_explicit_links.rs:20:15
|
LL | /// [`usize`](std::primitive::usize)
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: Explicit link does not affect the original link
= help: Remove explicit link instead
error: redundant explicit rustdoc link
--> $DIR/redundant_explicit_links.rs:23:29
|
LL | /// [std::primitive::usize](std::primitive::usize)
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: Explicit link does not affect the original link
= help: Remove explicit link instead
error: redundant explicit rustdoc link
--> $DIR/redundant_explicit_links.rs:24:31
|
LL | /// [`std::primitive::usize`](std::primitive::usize)
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: Explicit link does not affect the original link
= help: Remove explicit link instead
error: aborting due to 14 previous errors
2023-06-29 13:01:21 -05:00