diff options
| author | Rich Kadel <richkadel@google.com> | 2021-04-18 15:04:59 -0700 |
|---|---|---|
| committer | Rich Kadel <richkadel@google.com> | 2021-04-18 15:04:59 -0700 |
| commit | 3ece6061b4af39c331b8c2768d278af04a62ab97 (patch) | |
| tree | 49efbf034f21399239af793c3319481dea4861a0 /src/test/run-make-fulldeps/coverage/async.rs | |
| parent | 83ca4b7e600241850e61be48dee859f1604de50d (diff) | |
| download | rust-3ece6061b4af39c331b8c2768d278af04a62ab97.tar.gz rust-3ece6061b4af39c331b8c2768d278af04a62ab97.zip | |
DRAFT: coverage of async function bodies should match non-async
The initial commit demonstrates the issue, but the fix is not yet implemented. Once corrected... Fixes: #83985
Diffstat (limited to 'src/test/run-make-fulldeps/coverage/async.rs')
| -rw-r--r-- | src/test/run-make-fulldeps/coverage/async.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-make-fulldeps/coverage/async.rs b/src/test/run-make-fulldeps/coverage/async.rs index 67bf696d072..a6e38774706 100644 --- a/src/test/run-make-fulldeps/coverage/async.rs +++ b/src/test/run-make-fulldeps/coverage/async.rs @@ -1,6 +1,6 @@ #![allow(unused_assignments, dead_code)] -// compile-flags: --edition=2018 -C opt-level=1 # fix in rustc_mir/monomorphize/partitioning/mod.rs +// compile-flags: --edition=2018 -C opt-level=1 async fn c(x: u8) -> u8 { if x == 8 { |
