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

13 lines
169 B
Rust
Raw Normal View History

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