]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2361-dbg-macro/dbg-macro-move-semantics.stderr
Rollup merge of #86344 - est31:maybe-uninit-extra, r=RalfJung
[rust.git] / src / test / 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 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0382`.