Auto merge of #3513 - rust-lang:rustup-2024-04-25, r=RalfJung

Automatic Rustup
This commit is contained in:
bors 2024-04-25 06:48:37 +00:00
commit 605fabeb0c

View file

@ -3869,7 +3869,7 @@ use std::ops::{Coroutine, CoroutineState};
use std::pin::Pin; use std::pin::Pin;
fn main() { fn main() {
let mut coroutine = || { let mut coroutine = #[coroutine] || {
yield 1; yield 1;
return "foo" return "foo"
}; };
@ -3901,7 +3901,7 @@ use std::ops::Coroutine;
use std::pin::Pin; use std::pin::Pin;
fn main() { fn main() {
let mut coroutine = || { let mut coroutine = #[coroutine] || {
println!("2"); println!("2");
yield; yield;
println!("4"); println!("4");
@ -4007,7 +4007,7 @@ use std::pin::Pin;
fn main() { fn main() {
let ret = "foo"; let ret = "foo";
let mut coroutine = move || { let mut coroutine = #[coroutine] move || {
yield 1; yield 1;
return ret return ret
}; };