rust/tests/ui/pattern/bindings-after-at/bind-by-move-no-subbindings...

12 lines
152 B
Rust

// See issue #12534.
fn main() {}
struct A(Box<u8>);
fn f(a @ A(u): A) -> Box<u8> {
//~^ ERROR use of partially moved value
drop(a);
u
}