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#63331 - gorup:conditionalinit, r=cramertj
Test conditional initialization validation in async fns r? @cramertj Per [paper doc](https://paper.dropbox.com/doc/async.await-Call-for-Tests--AiWF2Nt8tgDiA70qFI~oiLOOAg-nMyZGrra7dz9KcFRMLKJy) calling for async/.await tests, tests are desired for conditionally initialized local variables. This PR hopes to provide tests for that. rust-lang#63294 seems to be tracking the items from the paper doc that this PR is related to rust-lang#62121 is an open issue asking for more async/.await tests that this relates to --- :+1: executed 2 new tests :+1: tidy
- Loading branch information
Showing
3 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
src/test/ui/async-await/conditional-and-guaranteed-initialization.rs
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,18 @@ | ||
// check-pass | ||
// edition:2018 | ||
// compile-flags: --crate-type lib | ||
|
||
#![feature(async_await)] | ||
|
||
async fn conditional_and_guaranteed_initialization(x: usize) -> usize { | ||
let y; | ||
if x > 5 { | ||
y = echo(10).await; | ||
} else { | ||
y = get_something().await; | ||
} | ||
y | ||
} | ||
|
||
async fn echo(x: usize) -> usize { x } | ||
async fn get_something() -> usize { 10 } |
16 changes: 16 additions & 0 deletions
16
src/test/ui/async-await/no-non-guaranteed-initialization.rs
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,16 @@ | ||
// compile-fail | ||
// edition:2018 | ||
// compile-flags: --crate-type lib | ||
|
||
#![feature(async_await)] | ||
|
||
async fn no_non_guaranteed_initialization(x: usize) -> usize { | ||
let y; | ||
if x > 5 { | ||
y = echo(10).await; | ||
} | ||
y | ||
//~^ use of possibly uninitialized variable: `y` | ||
} | ||
|
||
async fn echo(x: usize) -> usize { x + 1 } |
9 changes: 9 additions & 0 deletions
9
src/test/ui/async-await/no-non-guaranteed-initialization.stderr
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,9 @@ | ||
error[E0381]: use of possibly uninitialized variable: `y` | ||
--> $DIR/no-non-guaranteed-initialization.rs:12:5 | ||
| | ||
LL | y | ||
| ^ use of possibly uninitialized `y` | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0381`. |