]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-ui/intra-link-errors.stderr
baf4ab7a9bc460d07d31cb7ba8a8f0cb2f6c8be6
[rust.git] / src / test / rustdoc-ui / intra-link-errors.stderr
1 error: unresolved link to `std::io::oops`
2   --> $DIR/intra-link-errors.rs:4:6
3    |
4 LL | //! [std::io::oops]
5    |      ^^^^^^^^^^^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/intra-link-errors.rs:1:9
9    |
10 LL | #![deny(broken_intra_doc_links)]
11    |         ^^^^^^^^^^^^^^^^^^^^^^
12    = note: this link resolves to the crate `std`, which is not an enum
13    = note: if this were an enum, it might have a variant which resolved
14    = note: this link partially resolves to the module `io`
15    = note: `io` has no field, variant, or associated item named `oops`
16
17 error: unresolved link to `std::io::oops::not::here`
18   --> $DIR/intra-link-errors.rs:5:6
19    |
20 LL | //! [std::io::oops::not::here]
21    |      ^^^^^^^^^^^^^^^^^^^^^^^^
22    |
23    = note: no item named `std::io::oops::not` is in scope
24    = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
25
26 error: unresolved link to `path::to::nonexistent::module`
27   --> $DIR/intra-link-errors.rs:11:6
28    |
29 LL | /// [path::to::nonexistent::module]
30    |      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31    |
32    = note: no item named `path::to::nonexistent` is in scope
33    = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
34
35 error: unresolved link to `f::A`
36   --> $DIR/intra-link-errors.rs:17:6
37    |
38 LL | /// [f::A]
39    |      ^^^^
40    |
41    = note: no item named `f` is in scope
42    = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
43
44 error: unresolved link to `S::A`
45   --> $DIR/intra-link-errors.rs:22:6
46    |
47 LL | /// [S::A]
48    |      ^^^^
49    |
50    = note: this link partially resolves to the struct `S`
51    = note: `S` has no field, variant, or associated item named `A`
52
53 error: unresolved link to `S::fmt`
54   --> $DIR/intra-link-errors.rs:27:6
55    |
56 LL | /// [S::fmt]
57    |      ^^^^^^
58    |
59    = note: this link partially resolves to the struct `S`
60    = note: `S` has no field, variant, or associated item named `fmt`
61
62 error: unresolved link to `E::D`
63   --> $DIR/intra-link-errors.rs:32:6
64    |
65 LL | /// [E::D]
66    |      ^^^^
67    |
68    = note: this link partially resolves to the enum `E`
69    = note: `E` has no field, variant, or associated item named `D`
70
71 error: unresolved link to `u8::not_found`
72   --> $DIR/intra-link-errors.rs:37:6
73    |
74 LL | /// [u8::not_found]
75    |      ^^^^^^^^^^^^^
76    |
77    = note: the builtin type `u8` does not have an associated item named `not_found`
78
79 error: unresolved link to `S`
80   --> $DIR/intra-link-errors.rs:41:6
81    |
82 LL | /// [S!]
83    |      ^^ help: to link to the unit struct, use its disambiguator: `value@S`
84    |
85    = note: this link resolves to the unit struct `S`, which is not in the macro namespace
86
87 error: unresolved link to `T::g`
88   --> $DIR/intra-link-errors.rs:56:6
89    |
90 LL | /// [type@T::g]
91    |      ^^^^^^^^^
92    |
93    = note: this link partially resolves to the trait `T`
94    = note: `T` has no field, variant, or associated item named `g`
95
96 error: unresolved link to `S::h`
97   --> $DIR/intra-link-errors.rs:51:6
98    |
99 LL | /// [type@S::h]
100    |      ^^^^^^^^^
101    |
102    = note: this link partially resolves to the struct `S`
103    = note: `S` has no field, variant, or associated item named `h`
104
105 error: aborting due to 11 previous errors
106