@@ -10,53 +10,53 @@ warning: unresolved link to `Bar::foo`
10
10
--> $DIR/intra-links-warning.rs:3:35
11
11
|
12
12
LL | //! Test with [Foo::baz], [Bar::foo], ...
13
- | ^^^^^^^^ the module `intra_links_warning` contains no item named `Bar`
13
+ | ^^^^^^^^ no item named `Bar` in scope
14
14
15
15
warning: unresolved link to `Uniooon::X`
16
16
--> $DIR/intra-links-warning.rs:6:13
17
17
|
18
18
LL | //! , [Uniooon::X] and [Qux::Z].
19
- | ^^^^^^^^^^ the module `intra_links_warning` contains no item named `Uniooon`
19
+ | ^^^^^^^^^^ no item named `Uniooon` in scope
20
20
21
21
warning: unresolved link to `Qux::Z`
22
22
--> $DIR/intra-links-warning.rs:6:30
23
23
|
24
24
LL | //! , [Uniooon::X] and [Qux::Z].
25
- | ^^^^^^ the module `intra_links_warning` contains no item named `Qux`
25
+ | ^^^^^^ no item named `Qux` in scope
26
26
27
27
warning: unresolved link to `Uniooon::X`
28
28
--> $DIR/intra-links-warning.rs:10:14
29
29
|
30
30
LL | //! , [Uniooon::X] and [Qux::Z].
31
- | ^^^^^^^^^^ the module `intra_links_warning` contains no item named `Uniooon`
31
+ | ^^^^^^^^^^ no item named `Uniooon` in scope
32
32
33
33
warning: unresolved link to `Qux::Z`
34
34
--> $DIR/intra-links-warning.rs:10:31
35
35
|
36
36
LL | //! , [Uniooon::X] and [Qux::Z].
37
- | ^^^^^^ the module `intra_links_warning` contains no item named `Qux`
37
+ | ^^^^^^ no item named `Qux` in scope
38
38
39
39
warning: unresolved link to `Qux:Y`
40
40
--> $DIR/intra-links-warning.rs:14:13
41
41
|
42
42
LL | /// [Qux:Y]
43
- | ^^^^^ the module `intra_links_warning` contains no item named `Qux:Y`
43
+ | ^^^^^ no item named `Qux:Y` in scope
44
44
|
45
45
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
46
46
47
47
warning: unresolved link to `error`
48
48
--> $DIR/intra-links-warning.rs:58:30
49
49
|
50
50
LL | * time to introduce a link [error]*/
51
- | ^^^^^ the module `intra_links_warning` contains no item named `error`
51
+ | ^^^^^ no item named `error` in scope
52
52
|
53
53
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
54
54
55
55
warning: unresolved link to `error`
56
56
--> $DIR/intra-links-warning.rs:64:30
57
57
|
58
58
LL | * time to introduce a link [error]
59
- | ^^^^^ the module `intra_links_warning` contains no item named `error`
59
+ | ^^^^^ no item named `error` in scope
60
60
|
61
61
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
62
62
@@ -70,7 +70,7 @@ LL | #[doc = "single line [error]"]
70
70
71
71
single line [error]
72
72
^^^^^
73
- = note: the module `intra_links_warning` contains no item named `error`
73
+ = note: no item named `error` in scope
74
74
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
75
75
76
76
warning: unresolved link to `error`
@@ -83,7 +83,7 @@ LL | #[doc = "single line with \"escaping\" [error]"]
83
83
84
84
single line with "escaping" [error]
85
85
^^^^^
86
- = note: the module `intra_links_warning` contains no item named `error`
86
+ = note: no item named `error` in scope
87
87
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
88
88
89
89
warning: unresolved link to `error`
@@ -98,46 +98,46 @@ LL | | /// [error]
98
98
99
99
[error]
100
100
^^^^^
101
- = note: the module `intra_links_warning` contains no item named `error`
101
+ = note: no item named `error` in scope
102
102
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
103
103
104
104
warning: unresolved link to `error1`
105
105
--> $DIR/intra-links-warning.rs:80:11
106
106
|
107
107
LL | /// docs [error1]
108
- | ^^^^^^ the module `intra_links_warning` contains no item named `error1`
108
+ | ^^^^^^ no item named `error1` in scope
109
109
|
110
110
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
111
111
112
112
warning: unresolved link to `error2`
113
113
--> $DIR/intra-links-warning.rs:82:11
114
114
|
115
115
LL | /// docs [error2]
116
- | ^^^^^^ the module `intra_links_warning` contains no item named `error2`
116
+ | ^^^^^^ no item named `error2` in scope
117
117
|
118
118
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
119
119
120
120
warning: unresolved link to `BarA`
121
121
--> $DIR/intra-links-warning.rs:21:10
122
122
|
123
123
LL | /// bar [BarA] bar
124
- | ^^^^ the module `intra_links_warning` contains no item named `BarA`
124
+ | ^^^^ no item named `BarA` in scope
125
125
|
126
126
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
127
127
128
128
warning: unresolved link to `BarB`
129
129
--> $DIR/intra-links-warning.rs:27:9
130
130
|
131
131
LL | * bar [BarB] bar
132
- | ^^^^ the module `intra_links_warning` contains no item named `BarB`
132
+ | ^^^^ no item named `BarB` in scope
133
133
|
134
134
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
135
135
136
136
warning: unresolved link to `BarC`
137
137
--> $DIR/intra-links-warning.rs:34:6
138
138
|
139
139
LL | bar [BarC] bar
140
- | ^^^^ the module `intra_links_warning` contains no item named `BarC`
140
+ | ^^^^ no item named `BarC` in scope
141
141
|
142
142
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
143
143
@@ -151,7 +151,7 @@ LL | #[doc = "Foo\nbar [BarD] bar\nbaz"]
151
151
152
152
bar [BarD] bar
153
153
^^^^
154
- = note: the module `intra_links_warning` contains no item named `BarD`
154
+ = note: no item named `BarD` in scope
155
155
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
156
156
157
157
warning: unresolved link to `BarF`
@@ -167,7 +167,7 @@ LL | f!("Foo\nbar [BarF] bar\nbaz");
167
167
168
168
bar [BarF] bar
169
169
^^^^
170
- = note: the module `intra_links_warning` contains no item named `BarF`
170
+ = note: no item named `BarF` in scope
171
171
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
172
172
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
173
173
0 commit comments