Skip to content

Commit 4444ad2

Browse files
authored
Unrolled build for rust-lang#120915
Rollup merge of rust-lang#120915 - OdenShirataki:master, r=fmease Fix suggestion span for `?Sized` when param type has default Fixes rust-lang#120878 Diagnostic suggests adding `: ?Sized` in an incorrect place if a type parameter default is present r? `@fmease`
2 parents 81b757c + 4ac90e2 commit 4444ad2

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
@@ -3041,7 +3041,7 @@ impl<'tcx> TypeErrCtxtExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
30413041
this = "the implicit `Sized` requirement on this type parameter";
30423042
}
30433043
if let Some(hir::Node::TraitItem(hir::TraitItem {
3044-
ident,
3044+
generics,
30453045
kind: hir::TraitItemKind::Type(bounds, None),
30463046
..
30473047
})) = tcx.hir().get_if_local(item_def_id)
@@ -3053,7 +3053,7 @@ impl<'tcx> TypeErrCtxtExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
30533053
let (span, separator) = if let [.., last] = bounds {
30543054
(last.span().shrink_to_hi(), " +")
30553055
} else {
3056-
(ident.span.shrink_to_hi(), ":")
3056+
(generics.span.shrink_to_hi(), ":")
30573057
};
30583058
err.span_suggestion_verbose(
30593059
span,

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -2990,7 +2990,7 @@ impl<'tcx> InferCtxtPrivExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
29902990
{
29912991
(s, " +")
29922992
} else {
2993-
(span.shrink_to_hi(), ":")
2993+
(param.name.ident().span.shrink_to_hi(), ":")
29942994
};
29952995
err.span_suggestion_verbose(
29962996
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)