]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-ui/invalid-html-tags.stderr
f8e67732f63a096ce188cf296a0619b11c19b6bd
[rust.git] / src / test / rustdoc-ui / invalid-html-tags.stderr
1 error: unclosed HTML tag `unknown`
2   --> $DIR/invalid-html-tags.rs:7:5
3    |
4 LL | /// <unknown>
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 `script`
14   --> $DIR/invalid-html-tags.rs:10:5
15    |
16 LL | /// <script>
17    |     ^^^^^^^
18
19 error: unclosed HTML tag `h2`
20   --> $DIR/invalid-html-tags.rs:15:7
21    |
22 LL | ///   <h2>
23    |       ^^^
24
25 error: unclosed HTML tag `h3`
26   --> $DIR/invalid-html-tags.rs:17:9
27    |
28 LL | ///     <h3>
29    |         ^^^
30
31 error: unopened HTML tag `hello`
32   --> $DIR/invalid-html-tags.rs:20:5
33    |
34 LL | /// </hello>
35    |     ^^^^^^^
36
37 error: aborting due to 5 previous errors
38