rust/src/test/compile-fail/capture1.rs
2012-08-01 19:16:06 -07:00

9 lines
146 B
Rust

// -*- rust -*-
// error-pattern: attempted dynamic environment-capture
fn main() {
let bar: int = 5;
fn foo() -> int { return bar; }
}