summary refs log tree commit diff
path: root/src/test/compile-fail/bad-env-capture2.rs
blob: 9c50d29fa4eb1ad04a29f39257c0fdd74dca2b66 (plain)
1
2
3
4
5
// error-pattern: attempted dynamic environment-capture
fn foo(x: int) {
    fn bar() { log(debug, x); }
}
fn main() { foo(2); }