blob: 3e57d26745a95550b73d87b74dfb8f67cd51db00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#![feature(nll)]
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 captured variable in an `Fn` closure [E0507]
}
}
|