Skip to content

Commit f1b23f2

Browse files
committed
bless test output
1 parent 1c6b237 commit f1b23f2

File tree

1 file changed

+45
-9
lines changed

1 file changed

+45
-9
lines changed

tests/rustdoc-ui/lints/redundant_explicit_links.stderr

Lines changed: 45 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ LL | /// [`dummy_target`](dummy_target)
2222
= help: Remove explicit link instead
2323

2424
error: redundant explicit rustdoc link
25-
--> $DIR/redundant_explicit_links.rs:7:11
25+
--> $DIR/redundant_explicit_links.rs:8:11
2626
|
2727
LL | /// [Vec](Vec)
2828
| ^^^
@@ -31,7 +31,7 @@ LL | /// [Vec](Vec)
3131
= help: Remove explicit link instead
3232

3333
error: redundant explicit rustdoc link
34-
--> $DIR/redundant_explicit_links.rs:8:13
34+
--> $DIR/redundant_explicit_links.rs:9:13
3535
|
3636
LL | /// [`Vec`](Vec)
3737
| ^^^
@@ -40,7 +40,7 @@ LL | /// [`Vec`](Vec)
4040
= help: Remove explicit link instead
4141

4242
error: redundant explicit rustdoc link
43-
--> $DIR/redundant_explicit_links.rs:9:11
43+
--> $DIR/redundant_explicit_links.rs:10:11
4444
|
4545
LL | /// [Vec](std::vec::Vec)
4646
| ^^^^^^^^^^^^^
@@ -49,7 +49,7 @@ LL | /// [Vec](std::vec::Vec)
4949
= help: Remove explicit link instead
5050

5151
error: redundant explicit rustdoc link
52-
--> $DIR/redundant_explicit_links.rs:10:13
52+
--> $DIR/redundant_explicit_links.rs:11:13
5353
|
5454
LL | /// [`Vec`](std::vec::Vec)
5555
| ^^^^^^^^^^^^^
@@ -58,7 +58,7 @@ LL | /// [`Vec`](std::vec::Vec)
5858
= help: Remove explicit link instead
5959

6060
error: redundant explicit rustdoc link
61-
--> $DIR/redundant_explicit_links.rs:11:21
61+
--> $DIR/redundant_explicit_links.rs:14:21
6262
|
6363
LL | /// [std::vec::Vec](std::vec::Vec)
6464
| ^^^^^^^^^^^^^
@@ -67,7 +67,7 @@ LL | /// [std::vec::Vec](std::vec::Vec)
6767
= help: Remove explicit link instead
6868

6969
error: redundant explicit rustdoc link
70-
--> $DIR/redundant_explicit_links.rs:12:23
70+
--> $DIR/redundant_explicit_links.rs:15:23
7171
|
7272
LL | /// [`std::vec::Vec`](std::vec::Vec)
7373
| ^^^^^^^^^^^^^
@@ -76,7 +76,7 @@ LL | /// [`std::vec::Vec`](std::vec::Vec)
7676
= help: Remove explicit link instead
7777

7878
error: redundant explicit rustdoc link
79-
--> $DIR/redundant_explicit_links.rs:13:13
79+
--> $DIR/redundant_explicit_links.rs:17:13
8080
|
8181
LL | /// [usize](usize)
8282
| ^^^^^
@@ -85,13 +85,49 @@ LL | /// [usize](usize)
8585
= help: Remove explicit link instead
8686

8787
error: redundant explicit rustdoc link
88-
--> $DIR/redundant_explicit_links.rs:14:15
88+
--> $DIR/redundant_explicit_links.rs:18:15
8989
|
9090
LL | /// [`usize`](usize)
9191
| ^^^^^
9292
|
9393
= note: Explicit link does not affect the original link
9494
= help: Remove explicit link instead
9595

96-
error: aborting due to 10 previous errors
96+
error: redundant explicit rustdoc link
97+
--> $DIR/redundant_explicit_links.rs:19:13
98+
|
99+
LL | /// [usize](std::primitive::usize)
100+
| ^^^^^^^^^^^^^^^^^^^^^
101+
|
102+
= note: Explicit link does not affect the original link
103+
= help: Remove explicit link instead
104+
105+
error: redundant explicit rustdoc link
106+
--> $DIR/redundant_explicit_links.rs:20:15
107+
|
108+
LL | /// [`usize`](std::primitive::usize)
109+
| ^^^^^^^^^^^^^^^^^^^^^
110+
|
111+
= note: Explicit link does not affect the original link
112+
= help: Remove explicit link instead
113+
114+
error: redundant explicit rustdoc link
115+
--> $DIR/redundant_explicit_links.rs:23:29
116+
|
117+
LL | /// [std::primitive::usize](std::primitive::usize)
118+
| ^^^^^^^^^^^^^^^^^^^^^
119+
|
120+
= note: Explicit link does not affect the original link
121+
= help: Remove explicit link instead
122+
123+
error: redundant explicit rustdoc link
124+
--> $DIR/redundant_explicit_links.rs:24:31
125+
|
126+
LL | /// [`std::primitive::usize`](std::primitive::usize)
127+
| ^^^^^^^^^^^^^^^^^^^^^
128+
|
129+
= note: Explicit link does not affect the original link
130+
= help: Remove explicit link instead
131+
132+
error: aborting due to 14 previous errors
97133

0 commit comments

Comments
 (0)