]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-ui/invalid-html-tags.stderr
70d577bbfa9207f2d090f0380d4a2480d2a9a57b
[rust.git] / src / test / 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(invalid_html_tags)]
11    |         ^^^^^^^^^^^^^^^^^
12
13 error: unclosed HTML tag `unknown`
14   --> $DIR/invalid-html-tags.rs:10:5
15    |
16 LL | /// <unknown>
17    |     ^^^^^^^^^
18
19 error: unclosed HTML tag `script`
20   --> $DIR/invalid-html-tags.rs:13:5
21    |
22 LL | /// <script>
23    |     ^^^^^^^^
24
25 error: unclosed HTML tag `h2`
26   --> $DIR/invalid-html-tags.rs:18:7
27    |
28 LL | ///   <h2>
29    |       ^^^^
30
31 error: unclosed HTML tag `h3`
32   --> $DIR/invalid-html-tags.rs:20:9
33    |
34 LL | ///     <h3>
35    |         ^^^^
36
37 error: unopened HTML tag `hello`
38   --> $DIR/invalid-html-tags.rs:23:5
39    |
40 LL | /// </hello>
41    |     ^^^^^^^^
42
43 error: unclosed HTML tag `p`
44   --> $DIR/invalid-html-tags.rs:28:14
45    |
46 LL | ///    <br/> <p>
47    |              ^^^
48
49 error: unclosed HTML tag `div`
50   --> $DIR/invalid-html-tags.rs:40:5
51    |
52 LL | /// <div style="hello">
53    |     ^^^^
54
55 error: unclosed HTML tag `h3`
56   --> $DIR/invalid-html-tags.rs:42:7
57    |
58 LL | ///   <h3>
59    |       ^^^^
60
61 error: unclosed HTML tag `script`
62   --> $DIR/invalid-html-tags.rs:44:5
63    |
64 LL | /// <script
65    |     ^^^^^^
66
67 error: aborting due to 10 previous errors
68