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

10 lines
132 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// error-pattern: attempted dynamic environment-capture
fn foo() {
let int x;
fn bar() {
log x;
}
}
fn main() {
foo();
}