rust/tests/ui/rfc-2361-dbg-macro/dbg-macro-move-semantics.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
221 B
Rust
Raw Normal View History

// Test ensuring that `dbg!(expr)` will take ownership of the argument.
#[derive(Debug)]
struct NoCopy(usize);
fn main() {
let a = NoCopy(0);
let _ = dbg!(a);
2018-11-27 03:56:36 -06:00
let _ = dbg!(a); //~ ERROR use of moved value
}