Skip to content

Commit 238bf81

Browse files
committed
Improve error messages for boxed trait objects in tuples
1 parent 997a4cd commit 238bf81

File tree

3 files changed

+38
-8
lines changed

3 files changed

+38
-8
lines changed

src/librustc_lint/unused.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnusedResults {
145145
match ty.sty {
146146
ty::Adt(..) if ty.is_box() => {
147147
let boxed_ty = ty.boxed_ty();
148-
let descr_pre_path = format!("{}boxed ", descr_pre_path);
149-
check_must_use_ty(cx, boxed_ty, expr, span, &descr_pre_path, descr_post_path)
148+
let descr_pre_path = &format!("{}boxed ", descr_pre_path);
149+
check_must_use_ty(cx, boxed_ty, expr, span, descr_pre_path, descr_post_path)
150150
}
151151
ty::Adt(def, _) => {
152152
check_must_use_def(cx, def.did, span, descr_pre_path, descr_post_path)
@@ -157,8 +157,8 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnusedResults {
157157
if let ty::Predicate::Trait(ref poly_trait_predicate) = predicate {
158158
let trait_ref = poly_trait_predicate.skip_binder().trait_ref;
159159
let def_id = trait_ref.def_id;
160-
let descr_pre = format!("{}implementer of ", descr_pre_path);
161-
if check_must_use_def(cx, def_id, span, &descr_pre, descr_post_path) {
160+
let descr_pre = &format!("{}implementer of ", descr_pre_path);
161+
if check_must_use_def(cx, def_id, span, descr_pre, descr_post_path) {
162162
has_emitted = true;
163163
break;
164164
}
@@ -171,7 +171,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnusedResults {
171171
for predicate in binder.skip_binder().iter() {
172172
if let ty::ExistentialPredicate::Trait(ref trait_ref) = predicate {
173173
let def_id = trait_ref.def_id;
174-
let descr_post = " trait object";
174+
let descr_post = &format!(" trait object{}", descr_post_path);
175175
if check_must_use_def(cx, def_id, span, descr_pre_path, descr_post) {
176176
has_emitted = true;
177177
break;

src/test/ui/lint/must_use-trait.rs

+12
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,19 @@ fn get_boxed_critical() -> Box<dyn Critical> {
2121
Box::new(Anon {})
2222
}
2323

24+
fn get_nested_boxed_critical() -> Box<Box<dyn Critical>> {
25+
Box::new(Box::new(Anon {}))
26+
}
27+
28+
fn get_critical_tuple() -> (u32, Box<dyn Critical>, impl Critical, ()) {
29+
(0, get_boxed_critical(), get_critical(), ())
30+
}
31+
2432
fn main() {
2533
get_critical(); //~ ERROR unused implementer of `Critical` that must be used
2634
get_boxed_critical(); //~ ERROR unused boxed `Critical` trait object that must be used
35+
get_nested_boxed_critical();
36+
//~^ ERROR unused boxed boxed `Critical` trait object that must be used
37+
get_critical_tuple(); //~ ERROR unused boxed `Critical` trait object in tuple element 1
38+
//~^ ERROR unused implementer of `Critical` in tuple element 2
2739
}

src/test/ui/lint/must_use-trait.stderr

+21-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error: unused implementer of `Critical` that must be used
2-
--> $DIR/must_use-trait.rs:25:5
2+
--> $DIR/must_use-trait.rs:33:5
33
|
44
LL | get_critical();
55
| ^^^^^^^^^^^^^^^
@@ -11,10 +11,28 @@ LL | #![deny(unused_must_use)]
1111
| ^^^^^^^^^^^^^^^
1212

1313
error: unused boxed `Critical` trait object that must be used
14-
--> $DIR/must_use-trait.rs:26:5
14+
--> $DIR/must_use-trait.rs:34:5
1515
|
1616
LL | get_boxed_critical();
1717
| ^^^^^^^^^^^^^^^^^^^^^
1818

19-
error: aborting due to 2 previous errors
19+
error: unused boxed boxed `Critical` trait object that must be used
20+
--> $DIR/must_use-trait.rs:35:5
21+
|
22+
LL | get_nested_boxed_critical();
23+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24+
25+
error: unused boxed `Critical` trait object in tuple element 1 that must be used
26+
--> $DIR/must_use-trait.rs:37:5
27+
|
28+
LL | get_critical_tuple();
29+
| ^^^^^^^^^^^^^^^^^^^^^
30+
31+
error: unused implementer of `Critical` in tuple element 2 that must be used
32+
--> $DIR/must_use-trait.rs:37:5
33+
|
34+
LL | get_critical_tuple();
35+
| ^^^^^^^^^^^^^^^^^^^^^
36+
37+
error: aborting due to 5 previous errors
2038

0 commit comments

Comments
 (0)