forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#122515 - jieyouxu:ice-self-ty-mismatch, r=c…
…ompiler-errors Pass the correct DefId when suggesting writing the aliased Self type out Fixes rust-lang#122467.
- Loading branch information
Showing
3 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Checks that the following does not ICE when constructing type mismatch diagnostic involving | ||
// `Self` and const generics. | ||
// Issue: <https://github.com/rust-lang/rust/issues/122467> | ||
|
||
pub struct GenericStruct<const N: usize, T> { | ||
thing: T, | ||
} | ||
|
||
impl<T> GenericStruct<0, T> { | ||
pub fn new(thing: T) -> GenericStruct<1, T> { | ||
Self { thing } | ||
//~^ ERROR mismatched types | ||
} | ||
} | ||
|
||
pub struct GenericStruct2<const M: usize, T>(T); | ||
|
||
impl<T> GenericStruct2<0, T> { | ||
pub fn new(thing: T) -> GenericStruct2<1, T> { | ||
Self { 0: thing } | ||
//~^ ERROR mismatched types | ||
} | ||
} | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
error[E0308]: mismatched types | ||
--> $DIR/ice-self-mismatch-const-generics.rs:11:9 | ||
| | ||
LL | impl<T> GenericStruct<0, T> { | ||
| ------------------- this is the type of the `Self` literal | ||
LL | pub fn new(thing: T) -> GenericStruct<1, T> { | ||
| ------------------- expected `GenericStruct<1, T>` because of return type | ||
LL | Self { thing } | ||
| ^^^^^^^^^^^^^^ expected `1`, found `0` | ||
| | ||
= note: expected struct `GenericStruct<_, 1>` | ||
found struct `GenericStruct<_, 0>` | ||
help: use the type name directly | ||
| | ||
LL | GenericStruct::<1, T> { thing } | ||
| ~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
error[E0308]: mismatched types | ||
--> $DIR/ice-self-mismatch-const-generics.rs:20:9 | ||
| | ||
LL | impl<T> GenericStruct2<0, T> { | ||
| -------------------- this is the type of the `Self` literal | ||
LL | pub fn new(thing: T) -> GenericStruct2<1, T> { | ||
| -------------------- expected `GenericStruct2<1, T>` because of return type | ||
LL | Self { 0: thing } | ||
| ^^^^^^^^^^^^^^^^^ expected `1`, found `0` | ||
| | ||
= note: expected struct `GenericStruct2<_, 1>` | ||
found struct `GenericStruct2<_, 0>` | ||
help: use the type name directly | ||
| | ||
LL | GenericStruct2::<1, T> { 0: thing } | ||
| ~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0308`. |