rust/tests/ui/coroutine/partial-initialization-across-yield.rs

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

44 lines
724 B
Rust
Raw Normal View History

2023-10-19 21:46:28 +00:00
// Test that we don't allow yielding from a coroutine while a local is partially
// initialized.
2023-10-19 21:46:28 +00:00
#![feature(coroutines)]
struct S { x: i32, y: i32 }
struct T(i32, i32);
fn test_tuple() {
let _ = || {
let mut t: (i32, i32);
t.0 = 42; //~ ERROR E0381
yield;
t.1 = 88;
let _ = t;
};
}
fn test_tuple_struct() {
let _ = || {
let mut t: T;
t.0 = 42; //~ ERROR E0381
yield;
t.1 = 88;
let _ = t;
};
}
fn test_struct() {
let _ = || {
let mut t: S;
t.x = 42; //~ ERROR E0381
yield;
t.y = 88;
let _ = t;
};
}
fn main() {
test_tuple();
test_tuple_struct();
test_struct();
}