summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-ui/intra-doc/warning.stderr
blob: 19399a0df5bf9932baabe5aecd75cfc52864d55b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
warning: unresolved link to `Foo::baz`
  --> $DIR/warning.rs:3:23
   |
LL |        //! Test with [Foo::baz], [Bar::foo], ...
   |                       ^^^^^^^^ the struct `Foo` has no field or associated item named `baz`
   |
   = note: `#[warn(rustdoc::broken_intra_doc_links)]` on by default

warning: unresolved link to `Bar::foo`
  --> $DIR/warning.rs:3:35
   |
LL |        //! Test with [Foo::baz], [Bar::foo], ...
   |                                   ^^^^^^^^ no item named `Bar` in scope

warning: unresolved link to `Uniooon::X`
  --> $DIR/warning.rs:6:13
   |
LL |      //! , [Uniooon::X] and [Qux::Z].
   |             ^^^^^^^^^^ no item named `Uniooon` in scope

warning: unresolved link to `Qux::Z`
  --> $DIR/warning.rs:6:30
   |
LL |      //! , [Uniooon::X] and [Qux::Z].
   |                              ^^^^^^ no item named `Qux` in scope

warning: unresolved link to `Uniooon::X`
  --> $DIR/warning.rs:10:14
   |
LL |       //! , [Uniooon::X] and [Qux::Z].
   |              ^^^^^^^^^^ no item named `Uniooon` in scope

warning: unresolved link to `Qux::Z`
  --> $DIR/warning.rs:10:31
   |
LL |       //! , [Uniooon::X] and [Qux::Z].
   |                               ^^^^^^ no item named `Qux` in scope

warning: unresolved link to `Qux:Y`
  --> $DIR/warning.rs:14:13
   |
LL |        /// [Qux:Y]
   |             ^^^^^ no item named `Qux:Y` in scope
   |
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`

warning: unresolved link to `BarA`
  --> $DIR/warning.rs:21:10
   |
LL | /// bar [BarA] bar
   |          ^^^^ no item named `BarA` in scope
   |
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`

warning: unresolved link to `BarB`
  --> $DIR/warning.rs:27:9
   |
LL |  * bar [BarB] bar
   |         ^^^^ no item named `BarB` in scope
   |
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`

warning: unresolved link to `BarC`
  --> $DIR/warning.rs:34:6
   |
LL | bar [BarC] bar
   |      ^^^^ no item named `BarC` in scope
   |
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`

warning: unresolved link to `BarD`
  --> $DIR/warning.rs:45:1
   |
LL | #[doc = "Foo\nbar [BarD] bar\nbaz"]
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: the link appears in this line:
           
           bar [BarD] bar
                ^^^^
   = note: no item named `BarD` in scope
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`

warning: unresolved link to `BarF`
  --> $DIR/warning.rs:50:9
   |
LL |         #[doc = $f]
   |         ^^^^^^^^^^^
...
LL | f!("Foo\nbar [BarF] bar\nbaz");
   | ------------------------------ in this macro invocation
   |
   = note: the link appears in this line:
           
           bar [BarF] bar
                ^^^^
   = note: no item named `BarF` in scope
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
   = note: this warning originates in the macro `f` (in Nightly builds, run with -Z macro-backtrace for more info)

warning: unresolved link to `error`
  --> $DIR/warning.rs:58:30
   |
LL |  * time to introduce a link [error]*/
   |                              ^^^^^ no item named `error` in scope
   |
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`

warning: unresolved link to `error`
  --> $DIR/warning.rs:64:30
   |
LL |  * time to introduce a link [error]
   |                              ^^^^^ no item named `error` in scope
   |
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`

warning: unresolved link to `error`
  --> $DIR/warning.rs:68:1
   |
LL | #[doc = "single line [error]"]
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: the link appears in this line:
           
           single line [error]
                        ^^^^^
   = note: no item named `error` in scope
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`

warning: unresolved link to `error`
  --> $DIR/warning.rs:71:1
   |
LL | #[doc = "single line with \"escaping\" [error]"]
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: the link appears in this line:
           
           single line with "escaping" [error]
                                        ^^^^^
   = note: no item named `error` in scope
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`

warning: unresolved link to `error`
  --> $DIR/warning.rs:74:1
   |
LL | / /// Item docs.
LL | | #[doc="Hello there!"]
LL | | /// [error]
   | |___________^
   |
   = note: the link appears in this line:
           
           [error]
            ^^^^^
   = note: no item named `error` in scope
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`

warning: unresolved link to `error1`
  --> $DIR/warning.rs:80:11
   |
LL | /// docs [error1]
   |           ^^^^^^ no item named `error1` in scope
   |
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`

warning: unresolved link to `error2`
  --> $DIR/warning.rs:82:11
   |
LL | /// docs [error2]
   |           ^^^^^^ no item named `error2` in scope
   |
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`

warning: 19 warnings emitted