]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-ui/invalid-html-tags.stderr
Merge commit '7d53619064ab7045c383644cb445052d2a3d46db' into sync_cg_clif-2023-02-09
[rust.git] / tests / rustdoc-ui / invalid-html-tags.stderr
1 error: unclosed HTML tag `p`
2   --> $DIR/invalid-html-tags.rs:3:5
3    |
4 LL | //! <p>💩<p>
5    |     ^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/invalid-html-tags.rs:1:9
9    |
10 LL | #![deny(rustdoc::invalid_html_tags)]
11    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^
12
13 error: unclosed HTML tag `p`
14   --> $DIR/invalid-html-tags.rs:3:9
15    |
16 LL | //! <p>💩<p>
17    |          ^^^
18
19 error: unclosed HTML tag `unknown`
20   --> $DIR/invalid-html-tags.rs:11:5
21    |
22 LL | /// <unknown>
23    |     ^^^^^^^^^
24
25 error: unclosed HTML tag `script`
26   --> $DIR/invalid-html-tags.rs:14:5
27    |
28 LL | /// <script>
29    |     ^^^^^^^^
30
31 error: unclosed HTML tag `h2`
32   --> $DIR/invalid-html-tags.rs:19:7
33    |
34 LL | ///   <h2>
35    |       ^^^^
36
37 error: unclosed HTML tag `h3`
38   --> $DIR/invalid-html-tags.rs:21:9
39    |
40 LL | ///     <h3>
41    |         ^^^^
42
43 error: unopened HTML tag `hello`
44   --> $DIR/invalid-html-tags.rs:24:5
45    |
46 LL | /// </hello>
47    |     ^^^^^^^^
48
49 error: unclosed HTML tag `p`
50   --> $DIR/invalid-html-tags.rs:29:14
51    |
52 LL | ///    <br/> <p>
53    |              ^^^
54
55 error: unclosed HTML tag `div`
56   --> $DIR/invalid-html-tags.rs:41:5
57    |
58 LL | /// <div style="hello">
59    |     ^^^^
60
61 error: unclosed HTML tag `h3`
62   --> $DIR/invalid-html-tags.rs:43:7
63    |
64 LL | ///   <h3>
65    |       ^^^^
66
67 error: unclosed HTML tag `script`
68   --> $DIR/invalid-html-tags.rs:45:5
69    |
70 LL | /// <script
71    |     ^^^^^^
72
73 error: unclosed HTML tag `div`
74   --> $DIR/invalid-html-tags.rs:73:5
75    |
76 LL | /// <div></div
77    |     ^^^^^
78
79 error: Unclosed HTML comment
80   --> $DIR/invalid-html-tags.rs:87:5
81    |
82 LL | /// <!--
83    |     ^^^
84
85 error: unopened HTML tag `unopened-tag`
86   --> $DIR/invalid-html-tags.rs:114:26
87    |
88 LL | /// Web Components style </unopened-tag>
89    |                          ^^^^^^^^^^^^^^^
90
91 error: unclosed HTML tag `dashed-tags`
92   --> $DIR/invalid-html-tags.rs:112:26
93    |
94 LL | /// Web Components style <dashed-tags>
95    |                          ^^^^^^^^^^^^^
96
97 error: unclosed HTML tag `a`
98   --> $DIR/invalid-html-tags.rs:121:19
99    |
100 LL | /// backslashed \<<a href="">
101    |                   ^^
102
103 error: aborting due to 16 previous errors
104