]> git.lizzy.rs Git - rust.git/blob - tests/ui/rfc-2361-dbg-macro/dbg-macro-move-semantics.stderr
Rollup merge of #106766 - GuillaumeGomez:rm-stripper-dead-code, r=notriddle
[rust.git] / tests / ui / rfc-2361-dbg-macro / dbg-macro-move-semantics.stderr
1 error[E0382]: use of moved value: `a`
2   --> $DIR/dbg-macro-move-semantics.rs:9:18
3    |
4 LL |     let a = NoCopy(0);
5    |         - move occurs because `a` has type `NoCopy`, which does not implement the `Copy` trait
6 LL |     let _ = dbg!(a);
7    |             ------- value moved here
8 LL |     let _ = dbg!(a);
9    |                  ^ value used here after move
10    |
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0382`.