rust/tests/ui/coroutine/overlap-locals.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
523 B
Rust
Raw Normal View History

//@ run-pass
2023-10-19 21:46:28 +00:00
#![feature(coroutines)]
2019-05-10 01:13:40 +00:00
fn main() {
let a = || {
{
let w: i32 = 4;
yield;
println!("{:?}", w);
}
{
let x: i32 = 5;
yield;
println!("{:?}", x);
}
{
let y: i32 = 6;
yield;
println!("{:?}", y);
}
{
let z: i32 = 7;
yield;
println!("{:?}", z);
}
};
assert_eq!(8, std::mem::size_of_val(&a));
}