]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc-ui/lint-group.stderr
New upstream version 1.49.0~beta.4+dfsg1
[rustc.git] / src / test / rustdoc-ui / lint-group.stderr
CommitLineData
3dfed10e
XL
1error: missing code example in this documentation
2 --> $DIR/lint-group.rs:16:1
3 |
4LL | /// wait, this doesn't have a doctest?
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6 |
7note: the lint level is defined here
8 --> $DIR/lint-group.rs:7:9
9 |
10LL | #![deny(rustdoc)]
11 | ^^^^^^^
12 = note: `#[deny(missing_doc_code_examples)]` implied by `#[deny(rustdoc)]`
13
60c5eb7d 14error: documentation test in private item
0731742a
XL
15 --> $DIR/lint-group.rs:19:1
16 |
17LL | / /// wait, this *does* have a doctest?
18LL | | ///
19LL | | /// ```
20LL | | /// println!("sup");
21LL | | /// ```
22 | |_______^
23 |
74b04a01 24note: the lint level is defined here
0731742a
XL
25 --> $DIR/lint-group.rs:7:9
26 |
27LL | #![deny(rustdoc)]
28 | ^^^^^^^
416331ca 29 = note: `#[deny(private_doc_tests)]` implied by `#[deny(rustdoc)]`
0731742a 30
29967ef6
XL
31error: missing code example in this documentation
32 --> $DIR/lint-group.rs:26:1
33 |
34LL | /// <unknown>
35 | ^^^^^^^^^^^^^
36
3dfed10e 37error: unresolved link to `error`
0731742a
XL
38 --> $DIR/lint-group.rs:9:29
39 |
40LL | /// what up, let's make an [error]
29967ef6 41 | ^^^^^ no item named `error` in scope
0731742a 42 |
74b04a01 43note: the lint level is defined here
0731742a
XL
44 --> $DIR/lint-group.rs:7:9
45 |
46LL | #![deny(rustdoc)]
47 | ^^^^^^^
3dfed10e
XL
48 = note: `#[deny(broken_intra_doc_links)]` implied by `#[deny(rustdoc)]`
49 = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
0731742a 50
29967ef6
XL
51error: unclosed HTML tag `unknown`
52 --> $DIR/lint-group.rs:26:5
53 |
54LL | /// <unknown>
55 | ^^^^^^^^^
56 |
57note: the lint level is defined here
58 --> $DIR/lint-group.rs:7:9
59 |
60LL | #![deny(rustdoc)]
61 | ^^^^^^^
62 = note: `#[deny(invalid_html_tags)]` implied by `#[deny(rustdoc)]`
63
64error: aborting due to 5 previous errors
532ac7d7 65