summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-52663-span-decl-captured-variable.rs
blob: cd1f457a13064f0de9eb22b1dda56969c18c90d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
fn expect_fn<F>(f: F) where F : Fn() {
    f();
}

fn main() {
   {
       let x = (vec![22], vec![44]);
       expect_fn(|| drop(x.0));
       //~^ ERROR cannot move out of `x.0`, as `x` is a captured variable in an `Fn` closure [E0507]
   }
}