forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
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#100261 - luqmana:suggestions-overflow, r=lcnr
Set tainted errors bit before emitting coerce suggestions. Fixes rust-lang#100246. rust-lang#89576 basically got 99% of the way there but the match typechecking code (which calls `coerce_inner`) also needed a similar fix.
- Loading branch information
Showing
3 changed files
with
47 additions
and
0 deletions.
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,30 @@ | ||
#![recursion_limit = "5"] // To reduce noise | ||
|
||
//expect incompatible type error when ambiguous traits are in scope | ||
//and not an overflow error on the span in the main function. | ||
|
||
struct Ratio<T>(T); | ||
|
||
pub trait Pow { | ||
fn pow(self) -> Self; | ||
} | ||
|
||
impl<'a, T> Pow for &'a Ratio<T> | ||
where | ||
&'a T: Pow, | ||
{ | ||
fn pow(self) -> Self { | ||
self | ||
} | ||
} | ||
|
||
fn downcast<'a, W: ?Sized>() -> std::io::Result<&'a W> { | ||
todo!() | ||
} | ||
|
||
struct Other; | ||
|
||
fn main() -> std::io::Result<()> { | ||
let other: Other = downcast()?;//~ERROR 28:24: 28:35: `?` operator has incompatible types | ||
Ok(()) | ||
} |
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,13 @@ | ||
error[E0308]: `?` operator has incompatible types | ||
--> $DIR/issue-100246.rs:28:24 | ||
| | ||
LL | let other: Other = downcast()?; | ||
| ^^^^^^^^^^^ expected struct `Other`, found reference | ||
| | ||
= note: `?` operator cannot convert from `&_` to `Other` | ||
= note: expected struct `Other` | ||
found reference `&_` | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0308`. |