-
Notifications
You must be signed in to change notification settings - Fork 13k
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 #104697 - dingxiangfei2009:fix-euv-control-flow, r=ol…
…i-obk Restore control flow on error in EUV cc `@Nilstrieb` Fix #104649 Since #98574 refactored a piece of scrutinee memory categorization out as a subroutine, there is a subtle change in handling match arms especially when the categorization process faults and bails. In the correct case, it is not supposed to continue to process the arms any more. This PR restores the original control flow in EUV. I promise to add a compile-fail test to demonstrate that this indeed fixes the issue after coming back from a nap.
- Loading branch information
Showing
4 changed files
with
58 additions
and
7 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
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,32 @@ | ||
type Result<T, E = Error> = ::std::result::Result<T, E>; | ||
struct Error; | ||
|
||
trait ForEach { | ||
type Input; | ||
fn for_each<F, U>(self, f: F) | ||
where | ||
F: FnOnce(Self::Input) -> U; | ||
} | ||
|
||
impl<T> ForEach for A<T> { | ||
type Input = T; | ||
fn for_each<F, U>(self, f: F) | ||
where | ||
F: FnOnce(Self::Input) -> U, | ||
{ | ||
todo!() | ||
} | ||
} | ||
|
||
struct A<T>(T); | ||
|
||
fn main() { | ||
let a = A(Result::Ok(Result::Ok(()))); //~ ERROR type annotations needed | ||
a.for_each(|a: Result<_>| { | ||
let f = || match a { | ||
Ok(Ok(a)) => {} | ||
Ok(Err(a)) => {} | ||
Err(a) => {} | ||
}; | ||
}); | ||
} |
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,14 @@ | ||
error[E0282]: type annotations needed for `A<std::result::Result<std::result::Result<(), E>, Error>>` | ||
--> $DIR/issue-104649.rs:24:9 | ||
| | ||
LL | let a = A(Result::Ok(Result::Ok(()))); | ||
| ^ | ||
| | ||
help: consider giving `a` an explicit type, where the type for type parameter `E` is specified | ||
| | ||
LL | let a: A<std::result::Result<std::result::Result<(), E>, Error>> = A(Result::Ok(Result::Ok(()))); | ||
| +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0282`. |