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

9 lines
125 B
Rust
Raw Normal View History

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