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