mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
213 B
Rust
15 lines
213 B
Rust
// Check that coroutines respect the muatability of their upvars.
|
|
|
|
#![feature(coroutines)]
|
|
|
|
fn mutate_upvar() {
|
|
let x = 0;
|
|
move || {
|
|
x = 1;
|
|
//~^ ERROR
|
|
yield;
|
|
};
|
|
}
|
|
|
|
fn main() {}
|