Skip to content

Commit 4cf6cb3

Browse files
committed
Auto merge of #2078 - RalfJung:rustup, r=RalfJung
rustup rust-lang/rust#93313 somehow made it so that this does not have to be mutable any more...
2 parents ba24c31 + 154f629 commit 4cf6cb3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
27af5175497936ea3413bef5816e7c0172514b9c
1+
51ea9bb29b07d76c5a7167d054b54f4eb7f5b44e

tests/run-pass/async-fn.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ fn never() -> Never {
2929
}
3030

3131
async fn includes_never(crash: bool, x: u32) -> u32 {
32-
let mut result = async { x * x }.await;
32+
let result = async { x * x }.await;
3333
if !crash {
3434
return result;
3535
}

0 commit comments

Comments
 (0)