Skip to content

Commit 7257781

Browse files
authored
Unrolled build for rust-lang#116911
Rollup merge of rust-lang#116911 - estebank:issue-85378, r=oli-obk Suggest relaxing implicit `type Assoc: Sized;` bound Fix rust-lang#85378.
2 parents 45a45c6 + e8d4fb8 commit 7257781

File tree

5 files changed

+67
-0
lines changed

5 files changed

+67
-0
lines changed

compiler/rustc_trait_selection/src/traits/error_reporting/suggestions.rs

+23
Original file line numberDiff line numberDiff line change
@@ -2665,6 +2665,29 @@ impl<'tcx> TypeErrCtxtExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
26652665
// Check for foreign traits being reachable.
26662666
self.tcx.visible_parent_map(()).get(&def_id).is_some()
26672667
};
2668+
if Some(def_id) == self.tcx.lang_items().sized_trait()
2669+
&& let Some(hir::Node::TraitItem(hir::TraitItem {
2670+
ident,
2671+
kind: hir::TraitItemKind::Type(bounds, None),
2672+
..
2673+
})) = tcx.hir().get_if_local(item_def_id)
2674+
// Do not suggest relaxing if there is an explicit `Sized` obligation.
2675+
&& !bounds.iter()
2676+
.filter_map(|bound| bound.trait_ref())
2677+
.any(|tr| tr.trait_def_id() == self.tcx.lang_items().sized_trait())
2678+
{
2679+
let (span, separator) = if let [.., last] = bounds {
2680+
(last.span().shrink_to_hi(), " +")
2681+
} else {
2682+
(ident.span.shrink_to_hi(), ":")
2683+
};
2684+
err.span_suggestion_verbose(
2685+
span,
2686+
"consider relaxing the implicit `Sized` restriction",
2687+
format!("{separator} ?Sized"),
2688+
Applicability::MachineApplicable,
2689+
);
2690+
}
26682691
if let DefKind::Trait = tcx.def_kind(item_def_id)
26692692
&& !visible_item
26702693
{
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// run-rustfix
2+
trait TraitWithAType {
3+
type Item: ?Sized;
4+
}
5+
trait Trait {}
6+
struct A {}
7+
impl TraitWithAType for A {
8+
type Item = dyn Trait; //~ ERROR E0277
9+
}
10+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// run-rustfix
2+
trait TraitWithAType {
3+
type Item;
4+
}
5+
trait Trait {}
6+
struct A {}
7+
impl TraitWithAType for A {
8+
type Item = dyn Trait; //~ ERROR E0277
9+
}
10+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
error[E0277]: the size for values of type `(dyn Trait + 'static)` cannot be known at compilation time
2+
--> $DIR/assoc_type_bounds_implicit_sized.rs:8:17
3+
|
4+
LL | type Item = dyn Trait;
5+
| ^^^^^^^^^ doesn't have a size known at compile-time
6+
|
7+
= help: the trait `Sized` is not implemented for `(dyn Trait + 'static)`
8+
note: required by a bound in `TraitWithAType::Item`
9+
--> $DIR/assoc_type_bounds_implicit_sized.rs:3:5
10+
|
11+
LL | type Item;
12+
| ^^^^^^^^^^ required by this bound in `TraitWithAType::Item`
13+
help: consider relaxing the implicit `Sized` restriction
14+
|
15+
LL | type Item: ?Sized;
16+
| ++++++++
17+
18+
error: aborting due to previous error
19+
20+
For more information about this error, try `rustc --explain E0277`.

tests/ui/object-safety/assoc_type_bounds_sized_used.stderr

+4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ help: consider removing the `?Sized` bound to make the type parameter `Sized`
3333
LL - fn bop<T: Bop + ?Sized>() {
3434
LL + fn bop<T: Bop>() {
3535
|
36+
help: consider relaxing the implicit `Sized` restriction
37+
|
38+
LL | type Bar: Default + ?Sized
39+
| ++++++++
3640

3741
error: aborting due to 2 previous errors
3842

0 commit comments

Comments
 (0)