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

6 lines
129 B
Rust
Raw Normal View History

2010-06-23 21:03:09 -07:00
// error-pattern: attempted dynamic environment-capture
fn foo() {
2011-07-27 14:19:39 +02:00
let x: int;
fn bar() { log x; }
2010-06-23 21:03:09 -07:00
}
2011-07-27 14:19:39 +02:00
fn main() { foo(); }