rust/src/test/compile-fail/lambda-mutate-nested.rs

16 lines
380 B
Rust
Raw Normal View History

// error-pattern:assigning to upvar
// Make sure that nesting a block within a fn@ doesn't let us
// mutate upvars from a fn@.
fn f2(x: block()) { x(); }
fn main() {
let i = 0;
let ctr = fn@ () -> int { f2({|| i = i + 1; }); ret i; };
log(error, ctr());
log(error, ctr());
log(error, ctr());
log(error, ctr());
log(error, ctr());
log(error, i);
}