Skip to content

Commit 6dd32f2

Browse files
committed
Wording tweak
1 parent 8495c64 commit 6dd32f2

11 files changed

+45
-26
lines changed

compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs

+21-8
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,14 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
9898
return;
9999
}
100100

101-
let err =
102-
self.report_use_of_uninitialized(mpi, used_place, desired_action, span, use_spans);
101+
let err = self.report_use_of_uninitialized(
102+
mpi,
103+
used_place,
104+
moved_place,
105+
desired_action,
106+
span,
107+
use_spans,
108+
);
103109
self.buffer_error(err);
104110
} else {
105111
if let Some((reported_place, _)) = self.has_move_error(&move_out_indices) {
@@ -316,6 +322,7 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
316322
&self,
317323
mpi: MovePathIndex,
318324
used_place: PlaceRef<'tcx>,
325+
moved_place: PlaceRef<'tcx>,
319326
desired_action: InitializationRequiringAction,
320327
span: Span,
321328
use_spans: UseSpans<'tcx>,
@@ -334,11 +341,15 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
334341
}
335342
}
336343

337-
let (binding, name, desc) =
338-
match self.describe_place_with_options(used_place, IncludingDowncast(true)) {
339-
Some(name) => (format!("`{name}`"), format!("`{name}`"), format!("`{name}` ")),
340-
None => ("value".to_string(), "the variable".to_string(), String::new()),
344+
let (name, desc) =
345+
match self.describe_place_with_options(moved_place, IncludingDowncast(true)) {
346+
Some(name) => (format!("`{name}`"), format!("`{name}` ")),
347+
None => ("the variable".to_string(), String::new()),
341348
};
349+
let path = match self.describe_place_with_options(used_place, IncludingDowncast(true)) {
350+
Some(name) => format!("`{name}`"),
351+
None => "value".to_string(),
352+
};
342353

343354
// We use the statements were the binding was initialized, and inspect the HIR to look
344355
// for the branching codepaths that aren't covered, to point at them.
@@ -390,13 +401,15 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
390401
format!("{} occurs due to use{}", desired_action.as_noun(), use_spans.describe()),
391402
);
392403

393-
if let InitializationRequiringAction::PartialAssignment = desired_action {
404+
if let InitializationRequiringAction::PartialAssignment
405+
| InitializationRequiringAction::Assignment = desired_action
406+
{
394407
err.help(
395408
"partial initialization isn't supported, fully initialize the binding with a \
396409
default value and mutate it, or use `std::mem::MaybeUninit`",
397410
);
398411
}
399-
err.span_label(span, format!("{binding} {used} here but it {isnt_initialized}"));
412+
err.span_label(span, format!("{path} {used} here but it {isnt_initialized}"));
400413

401414
let mut shown = false;
402415
for (sp, label) in visitor.errors {

src/test/ui/borrowck/borrowck-init-in-fru.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0381]: used binding `origin.y` isn't initialized
1+
error[E0381]: used binding `origin` isn't initialized
22
--> $DIR/borrowck-init-in-fru.rs:9:14
33
|
44
LL | let mut origin: Point;

src/test/ui/borrowck/borrowck-partial-reinit-4.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ LL | let mut x : (Test2, Test2);
55
| ----- binding declared here but left uninitialized
66
LL | (x.0).0 = Some(Test);
77
| ^^^^^^^ `x.0` assigned here but it isn't fully initialized
8+
|
9+
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
810

911
error: aborting due to previous error
1012

src/test/ui/borrowck/borrowck-uninit-field-access.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0381]: used binding `a.x` isn't initialized
1+
error[E0381]: used binding `a` isn't initialized
22
--> $DIR/borrowck-uninit-field-access.rs:21:13
33
|
44
LL | let mut a: Point;

src/test/ui/borrowck/borrowck-uninit-ref-chain.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
error[E0381]: used binding `**x` isn't initialized
1+
error[E0381]: used binding `x` isn't initialized
22
--> $DIR/borrowck-uninit-ref-chain.rs:8:14
33
|
44
LL | let x: &&Box<i32>;
55
| - binding declared here but left uninitialized
66
LL | let _y = &**x;
77
| ^^^^ `**x` used here but it isn't initialized
88

9-
error[E0381]: used binding `**x` isn't initialized
9+
error[E0381]: used binding `x` isn't initialized
1010
--> $DIR/borrowck-uninit-ref-chain.rs:11:14
1111
|
1212
LL | let x: &&S<i32, i32>;
1313
| - binding declared here but left uninitialized
1414
LL | let _y = &**x;
1515
| ^^^^ `**x` used here but it isn't initialized
1616

17-
error[E0381]: used binding `**x` isn't initialized
17+
error[E0381]: used binding `x` isn't initialized
1818
--> $DIR/borrowck-uninit-ref-chain.rs:14:14
1919
|
2020
LL | let x: &&i32;

src/test/ui/borrowck/borrowck-use-in-index-lvalue.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
error[E0381]: used binding `*w` isn't initialized
1+
error[E0381]: used binding `w` isn't initialized
22
--> $DIR/borrowck-use-in-index-lvalue.rs:3:5
33
|
44
LL | let w: &mut [isize];
55
| - binding declared here but left uninitialized
66
LL | w[5] = 0;
77
| ^^^^ `*w` used here but it isn't initialized
88

9-
error[E0381]: used binding `*w` isn't initialized
9+
error[E0381]: used binding `w` isn't initialized
1010
--> $DIR/borrowck-use-in-index-lvalue.rs:6:5
1111
|
1212
LL | let mut w: &mut [isize];

src/test/ui/borrowck/borrowck-use-uninitialized-in-cast-trait.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0381]: used binding `*x` isn't initialized
1+
error[E0381]: used binding `x` isn't initialized
22
--> $DIR/borrowck-use-uninitialized-in-cast-trait.rs:9:13
33
|
44
LL | let x: &i32;

src/test/ui/borrowck/borrowck-use-uninitialized-in-cast.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0381]: used binding `*x` isn't initialized
1+
error[E0381]: used binding `x` isn't initialized
22
--> $DIR/borrowck-use-uninitialized-in-cast.rs:7:13
33
|
44
LL | let x: &i32;

src/test/ui/const-generics/const-generic-default-wont-borrowck.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0381]: used binding `*s` isn't initialized
1+
error[E0381]: used binding `s` isn't initialized
22
--> $DIR/const-generic-default-wont-borrowck.rs:2:26
33
|
44
LL | let s: &'static str; s.len()

src/test/ui/nll/issue-21232-partial-init-and-erroneous-use.stderr

+6-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ LL | let d: D;
55
| - binding declared here but left uninitialized
66
LL | d.x = 10;
77
| ^^^^^^^^ `d` assigned here but it isn't fully initialized
8+
|
9+
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
810

911
error[E0381]: assigned binding `d` isn't fully initialized
1012
--> $DIR/issue-21232-partial-init-and-erroneous-use.rs:33:5
@@ -13,6 +15,8 @@ LL | let mut d: D;
1315
| ----- binding declared here but left uninitialized
1416
LL | d.x = 10;
1517
| ^^^^^^^^ `d` assigned here but it isn't fully initialized
18+
|
19+
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
1620

1721
error[E0382]: assign of moved value: `d`
1822
--> $DIR/issue-21232-partial-init-and-erroneous-use.rs:39:5
@@ -24,7 +28,7 @@ LL | drop(d);
2428
LL | d.x = 10;
2529
| ^^^^^^^^ value assigned here after move
2630

27-
error[E0381]: partially assigned binding `d.s` isn't fully initialized
31+
error[E0381]: partially assigned binding `d` isn't fully initialized
2832
--> $DIR/issue-21232-partial-init-and-erroneous-use.rs:45:5
2933
|
3034
LL | let d: D;
@@ -34,7 +38,7 @@ LL | d.s.y = 20;
3438
|
3539
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
3640

37-
error[E0381]: partially assigned binding `d.s` isn't fully initialized
41+
error[E0381]: partially assigned binding `d` isn't fully initialized
3842
--> $DIR/issue-21232-partial-init-and-erroneous-use.rs:50:5
3943
|
4044
LL | let mut d: D;

src/test/ui/nll/issue-21232-partial-init-and-use.stderr

+6-6
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ LL | t.0 = 10;
9898
|
9999
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
100100

101-
error[E0381]: partially assigned binding `q.r.f` isn't fully initialized
101+
error[E0381]: partially assigned binding `q` isn't fully initialized
102102
--> $DIR/issue-21232-partial-init-and-use.rs:170:5
103103
|
104104
LL | let q: Q<S<B>>;
@@ -108,7 +108,7 @@ LL | q.r.f.x = 10; q.r.f.y = Box::new(20);
108108
|
109109
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
110110

111-
error[E0381]: partially assigned binding `q.r.f` isn't fully initialized
111+
error[E0381]: partially assigned binding `q` isn't fully initialized
112112
--> $DIR/issue-21232-partial-init-and-use.rs:176:5
113113
|
114114
LL | let q: Q<T>;
@@ -138,7 +138,7 @@ LL | q.r.f.0 = 10; q.r.f.1 = Box::new(20);
138138
|
139139
= note: move occurs because `q.r` has type `R<(u32, Box<u32>)>`, which does not implement the `Copy` trait
140140

141-
error[E0381]: partially assigned binding `q.r.f` isn't fully initialized
141+
error[E0381]: partially assigned binding `q` isn't fully initialized
142142
--> $DIR/issue-21232-partial-init-and-use.rs:196:5
143143
|
144144
LL | let q: Q<S<B>>;
@@ -148,7 +148,7 @@ LL | q.r.f.x = 10;
148148
|
149149
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
150150

151-
error[E0381]: partially assigned binding `q.r.f` isn't fully initialized
151+
error[E0381]: partially assigned binding `q` isn't fully initialized
152152
--> $DIR/issue-21232-partial-init-and-use.rs:202:5
153153
|
154154
LL | let q: Q<T>;
@@ -178,7 +178,7 @@ LL | q.r.f.0 = 10;
178178
|
179179
= note: move occurs because `q.r` has type `R<(u32, Box<u32>)>`, which does not implement the `Copy` trait
180180

181-
error[E0381]: partially assigned binding `q.r.f` isn't fully initialized
181+
error[E0381]: partially assigned binding `q` isn't fully initialized
182182
--> $DIR/issue-21232-partial-init-and-use.rs:222:5
183183
|
184184
LL | let mut q: Q<S<Void>>;
@@ -188,7 +188,7 @@ LL | q.r.f.x = 10;
188188
|
189189
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
190190

191-
error[E0381]: partially assigned binding `q.r.f` isn't fully initialized
191+
error[E0381]: partially assigned binding `q` isn't fully initialized
192192
--> $DIR/issue-21232-partial-init-and-use.rs:228:5
193193
|
194194
LL | let mut q: Q<Tvoid>;

0 commit comments

Comments
 (0)