Skip to content

Commit 4ac90e2

Browse files
committed
Fix suggestion span for ?Sized
when param type has default and type in trait is generic.
1 parent 0cbef48 commit 4ac90e2

File tree

5 files changed

+64
-7
lines changed

5 files changed

+64
-7
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -3042,7 +3042,7 @@ impl<'tcx> TypeErrCtxtExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
30423042
this = "the implicit `Sized` requirement on this type parameter";
30433043
}
30443044
if let Some(hir::Node::TraitItem(hir::TraitItem {
3045-
ident,
3045+
generics,
30463046
kind: hir::TraitItemKind::Type(bounds, None),
30473047
..
30483048
})) = tcx.hir().get_if_local(item_def_id)
@@ -3054,7 +3054,7 @@ impl<'tcx> TypeErrCtxtExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
30543054
let (span, separator) = if let [.., last] = bounds {
30553055
(last.span().shrink_to_hi(), " +")
30563056
} else {
3057-
(ident.span.shrink_to_hi(), ":")
3057+
(generics.span.shrink_to_hi(), ":")
30583058
};
30593059
err.span_suggestion_verbose(
30603060
span,

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -2993,7 +2993,7 @@ impl<'tcx> InferCtxtPrivExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
29932993
{
29942994
(s, " +")
29952995
} else {
2996-
(span.shrink_to_hi(), ":")
2996+
(param.name.ident().span.shrink_to_hi(), ":")
29972997
};
29982998
err.span_suggestion_verbose(
29992999
span,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// issue: 120878
2+
fn main() {
3+
struct StructA<A, B = A> {
4+
_marker: std::marker::PhantomData<fn() -> (A, B)>,
5+
}
6+
7+
struct StructB {
8+
a: StructA<isize, [u8]>,
9+
//~^ ERROR: the size for values of type `[u8]` cannot be known at compilation time [E0277]
10+
}
11+
12+
trait Trait {
13+
type P<X>;
14+
}
15+
16+
impl Trait for () {
17+
type P<X> = [u8];
18+
//~^ ERROR: the size for values of type `[u8]` cannot be known at compilation time [E0277]
19+
}
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
2+
--> $DIR/suggest-maybe-sized-bound.rs:8:12
3+
|
4+
LL | a: StructA<isize, [u8]>,
5+
| ^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
6+
|
7+
= help: the trait `Sized` is not implemented for `[u8]`
8+
note: required by an implicit `Sized` bound in `StructA`
9+
--> $DIR/suggest-maybe-sized-bound.rs:3:23
10+
|
11+
LL | struct StructA<A, B = A> {
12+
| ^^^^^ required by the implicit `Sized` requirement on this type parameter in `StructA`
13+
help: consider relaxing the implicit `Sized` restriction
14+
|
15+
LL | struct StructA<A, B: ?Sized = A> {
16+
| ++++++++
17+
18+
error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
19+
--> $DIR/suggest-maybe-sized-bound.rs:17:21
20+
|
21+
LL | type P<X> = [u8];
22+
| ^^^^ doesn't have a size known at compile-time
23+
|
24+
= help: the trait `Sized` is not implemented for `[u8]`
25+
note: required by a bound in `Trait::P`
26+
--> $DIR/suggest-maybe-sized-bound.rs:13:9
27+
|
28+
LL | type P<X>;
29+
| ^^^^^^^^^^ required by this bound in `Trait::P`
30+
help: consider relaxing the implicit `Sized` restriction
31+
|
32+
LL | type P<X>: ?Sized;
33+
| ++++++++
34+
35+
error: aborting due to 2 previous errors
36+
37+
For more information about this error, try `rustc --explain E0277`.

tests/ui/traits/issue-28576.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ LL | pub trait Bar: Foo<Assoc=()> + Sized {
3636
| +++++++
3737
help: consider relaxing the implicit `Sized` restriction
3838
|
39-
LL | pub trait Foo<RHS=Self: ?Sized> {
40-
| ++++++++
39+
LL | pub trait Foo<RHS: ?Sized=Self> {
40+
| ++++++++
4141

4242
error[E0277]: the size for values of type `Self` cannot be known at compilation time
4343
--> $DIR/issue-28576.rs:5:16
@@ -56,8 +56,8 @@ LL | ) where Self: Sized;
5656
| +++++++++++++++++
5757
help: consider relaxing the implicit `Sized` restriction
5858
|
59-
LL | pub trait Foo<RHS=Self: ?Sized> {
60-
| ++++++++
59+
LL | pub trait Foo<RHS: ?Sized=Self> {
60+
| ++++++++
6161

6262
error: aborting due to 3 previous errors
6363

0 commit comments

Comments
 (0)