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