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.
break out scopes when let-else fails to match
- Loading branch information
1 parent
d60d88f
commit 9b56640
Showing
5 changed files
with
110 additions
and
42 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
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,26 @@ | ||
// run-pass | ||
// | ||
// from issue #93951, where borrowck complained the temporary that `foo(&x)` was stored in was to | ||
// be dropped sometime after `x` was. It then suggested adding a semicolon that was already there. | ||
|
||
#![feature(let_else)] | ||
use std::fmt::Debug; | ||
|
||
fn foo<'a>(x: &'a str) -> Result<impl Debug + 'a, ()> { | ||
Ok(x) | ||
} | ||
|
||
fn let_else() { | ||
let x = String::from("Hey"); | ||
let Ok(_) = foo(&x) else { return }; | ||
} | ||
|
||
fn if_let() { | ||
let x = String::from("Hey"); | ||
let _ = if let Ok(s) = foo(&x) { s } else { return }; | ||
} | ||
|
||
fn main() { | ||
let_else(); | ||
if_let(); | ||
} |
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