rust/src/test/compile-fail/bad-env-capture2.rs

6 lines
129 B
Rust

// error-pattern: attempted dynamic environment-capture
fn foo(x: int) {
fn bar() { log(debug, x); }
}
fn main() { foo(2); }