aboutsummaryrefslogtreecommitdiff
path: root/src/test/compile-fail/bad-env-capture2.rs
blob: ccec331049516e0b623fd4c281d4f405f345562a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// xfail-stage0
// xfail-stage1
// error-pattern: attempted dynamic environment-capture
fn foo(int x) {
  fn bar() {
    log x;
  }
}
fn main() {
  foo(2);
}