mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-21 17:52:12 +03:00
13 lines
268 B
Rust
13 lines
268 B
Rust
//@ edition:2015..2021
|
|
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]
|
|
}
|
|
}
|