]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-ui/suggestions/html-as-generics.stderr
Rollup merge of #106106 - jyn514:remote-tracking-branch, r=Mark-Simulacrum
[rust.git] / tests / rustdoc-ui / suggestions / html-as-generics.stderr
1 error: unclosed HTML tag `i32`
2   --> $DIR/html-as-generics.rs:4:13
3    |
4 LL | /// This Vec<i32> thing!
5    |             ^^^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/html-as-generics.rs:2:9
9    |
10 LL | #![deny(rustdoc::invalid_html_tags)]
11    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^
12 help: try marking as source code
13    |
14 LL | /// This `Vec<i32>` thing!
15    |          +        +
16
17 error: unclosed HTML tag `i32`
18   --> $DIR/html-as-generics.rs:9:18
19    |
20 LL | /// This vec::Vec<i32> thing!
21    |                  ^^^^^
22    |
23 help: try marking as source code
24    |
25 LL | /// This `vec::Vec<i32>` thing!
26    |          +             +
27
28 error: unclosed HTML tag `i32`
29   --> $DIR/html-as-generics.rs:14:13
30    |
31 LL | /// This i32<i32> thing!
32    |             ^^^^^
33    |
34 help: try marking as source code
35    |
36 LL | /// This `i32<i32>` thing!
37    |          +        +
38
39 error: unclosed HTML tag `i32`
40   --> $DIR/html-as-generics.rs:19:15
41    |
42 LL | /// This Vec::<i32> thing!
43    |               ^^^^^
44    |
45 help: try marking as source code
46    |
47 LL | /// This `Vec::<i32>` thing!
48    |          +          +
49
50 error: unclosed HTML tag `i32`
51   --> $DIR/html-as-generics.rs:24:41
52    |
53 LL | /// This [link](https://rust-lang.org)::<i32> thing!
54    |                                         ^^^^^
55    |
56 help: try marking as source code
57    |
58 LL | /// This [link](https://rust-lang.org)`::<i32>` thing!
59    |                                       +       +
60
61 error: unclosed HTML tag `i32`
62   --> $DIR/html-as-generics.rs:29:21
63    |
64 LL | /// This <span>Vec::<i32></span> thing!
65    |                     ^^^^^
66    |
67 help: try marking as source code
68    |
69 LL | /// This <span>`Vec::<i32>`</span> thing!
70    |                +          +
71
72 error: unclosed HTML tag `u32`
73   --> $DIR/html-as-generics.rs:34:28
74    |
75 LL | /// Nested generics Vec<Vec<u32>>
76    |                            ^^^^^
77    |
78 help: try marking as source code
79    |
80 LL | /// Nested generics `Vec<Vec<u32>>`
81    |                     +             +
82
83 error: unclosed HTML tag `i32`
84   --> $DIR/html-as-generics.rs:39:27
85    |
86 LL | /// Generics with path Vec<i32>::Iter
87    |                           ^^^^^
88    |
89 help: try marking as source code
90    |
91 LL | /// Generics with path `Vec<i32>::Iter`
92    |                        +              +
93
94 error: unclosed HTML tag `i32`
95   --> $DIR/html-as-generics.rs:44:28
96    |
97 LL | /// Generics with path <Vec<i32>>::Iter
98    |                            ^^^^^
99    |
100 help: try marking as source code
101    |
102 LL | /// Generics with path `<Vec<i32>>::Iter`
103    |                        +                +
104
105 error: unclosed HTML tag `i32`
106   --> $DIR/html-as-generics.rs:49:31
107    |
108 LL | /// Generics with path Vec<Vec<i32>>::Iter
109    |                               ^^^^^
110    |
111 help: try marking as source code
112    |
113 LL | /// Generics with path `Vec<Vec<i32>>::Iter`
114    |                        +                   +
115
116 error: unclosed HTML tag `i32`
117   --> $DIR/html-as-generics.rs:54:28
118    |
119 LL | /// Generics with bump <Vec<i32>>s
120    |                            ^^^^^
121    |
122 help: try marking as source code
123    |
124 LL | /// Generics with bump `<Vec<i32>>`s
125    |                        +          +
126
127 error: unclosed HTML tag `i32`
128   --> $DIR/html-as-generics.rs:59:31
129    |
130 LL | /// Generics with bump Vec<Vec<i32>>s
131    |                               ^^^^^
132    |
133 help: try marking as source code
134    |
135 LL | /// Generics with bump `Vec<Vec<i32>>`s
136    |                        +             +
137
138 error: unclosed HTML tag `i32`
139   --> $DIR/html-as-generics.rs:64:29
140    |
141 LL | /// Generics with punct <Vec<i32>>!
142    |                             ^^^^^
143    |
144 help: try marking as source code
145    |
146 LL | /// Generics with punct `<Vec<i32>>`!
147    |                         +          +
148
149 error: unclosed HTML tag `i32`
150   --> $DIR/html-as-generics.rs:69:32
151    |
152 LL | /// Generics with punct Vec<Vec<i32>>!
153    |                                ^^^^^
154    |
155 help: try marking as source code
156    |
157 LL | /// Generics with punct `Vec<Vec<i32>>`!
158    |                         +             +
159
160 error: unclosed HTML tag `i32`
161   --> $DIR/html-as-generics.rs:74:14
162    |
163 LL | /// This [Vec<i32>] thing!
164    |              ^^^^^
165    |
166 help: try marking as source code
167    |
168 LL | /// This [`Vec<i32>`] thing!
169    |           +        +
170
171 error: unclosed HTML tag `i32`
172   --> $DIR/html-as-generics.rs:79:16
173    |
174 LL | /// This [Vec::<i32>] thing!
175    |                ^^^^^
176    |
177 help: try marking as source code
178    |
179 LL | /// This [`Vec::<i32>`] thing!
180    |           +          +
181
182 error: aborting due to 16 previous errors
183