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

7 lines
149 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// error-pattern: attempted dynamic environment-capture
fn foo() {
2011-07-27 07:19:39 -05:00
let x: int;
fn bar() { log_full(core::debug, x); }
2010-06-23 23:03:09 -05:00
}
fn main() { foo(); }