]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-ui/invalid-html-self-closing-tag.stderr
Auto merge of #107618 - chriswailes:linker-arg, r=albertlarsan68
[rust.git] / tests / rustdoc-ui / invalid-html-self-closing-tag.stderr
1 error: invalid self-closing HTML tag `p`
2   --> $DIR/invalid-html-self-closing-tag.rs:3:5
3    |
4 LL | /// <p/>
5    |     ^^
6    |
7 note: the lint level is defined here
8   --> $DIR/invalid-html-self-closing-tag.rs:1:9
9    |
10 LL | #![deny(rustdoc::invalid_html_tags)]
11    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^
12
13 error: invalid self-closing HTML tag `p`
14   --> $DIR/invalid-html-self-closing-tag.rs:7:5
15    |
16 LL | /// <p style/>
17    |     ^^
18
19 error: invalid self-closing HTML tag `p`
20   --> $DIR/invalid-html-self-closing-tag.rs:11:5
21    |
22 LL | /// <p style=""/>
23    |     ^^
24
25 error: invalid self-closing HTML tag `p`
26   --> $DIR/invalid-html-self-closing-tag.rs:15:5
27    |
28 LL | /// <p style="x"/>
29    |     ^^
30
31 error: unclosed quoted HTML attribute on tag `p`
32   --> $DIR/invalid-html-self-closing-tag.rs:19:14
33    |
34 LL | /// <p style="x/></p>
35    |              ^
36
37 error: unclosed quoted HTML attribute on tag `p`
38   --> $DIR/invalid-html-self-closing-tag.rs:23:14
39    |
40 LL | /// <p style='x/></p>
41    |              ^
42
43 error: invalid self-closing HTML tag `p`
44   --> $DIR/invalid-html-self-closing-tag.rs:30:5
45    |
46 LL | /// <p style="x/"/>
47    |     ^^
48
49 error: invalid self-closing HTML tag `p`
50   --> $DIR/invalid-html-self-closing-tag.rs:34:5
51    |
52 LL | /// <p / >
53    |     ^^
54
55 error: invalid self-closing HTML tag `a`
56   --> $DIR/invalid-html-self-closing-tag.rs:47:5
57    |
58 LL | /// <a href="/"/>
59    |     ^^
60
61 error: invalid self-closing HTML tag `a`
62   --> $DIR/invalid-html-self-closing-tag.rs:51:5
63    |
64 LL | /// <a href=x />
65    |     ^^
66
67 error: invalid self-closing HTML tag `a`
68   --> $DIR/invalid-html-self-closing-tag.rs:55:5
69    |
70 LL | /// <a href= />
71    |     ^^
72
73 error: unclosed HTML tag `rect`
74   --> $DIR/invalid-html-self-closing-tag.rs:65:10
75    |
76 LL | /// <svg><rect width=1 height=/></svg>
77    |          ^^^^^
78
79 error: aborting due to 12 previous errors
80