blob: c49ea15b824832641dac75411d92c69b882b0d6d [file] [log] [blame]
// Check that generators respect the muatability of their upvars.
#![feature(generators)]
fn mutate_upvar() {
let x = 0;
move || {
x = 1;
//~^ ERROR
yield;
};
}
fn main() {}