]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-ui/suggestions/html-as-generics.stderr
Rollup merge of #100206 - RalfJung:miri-terminfo, r=thomcc
[rust.git] / src / test / 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: aborting due to 6 previous errors
73