From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/moves/move-of-addr-of-mut.stderr | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tests/ui/moves/move-of-addr-of-mut.stderr (limited to 'tests/ui/moves/move-of-addr-of-mut.stderr') diff --git a/tests/ui/moves/move-of-addr-of-mut.stderr b/tests/ui/moves/move-of-addr-of-mut.stderr new file mode 100644 index 000000000..ddebaa012 --- /dev/null +++ b/tests/ui/moves/move-of-addr-of-mut.stderr @@ -0,0 +1,17 @@ +error[E0381]: used binding `x` isn't initialized + --> $DIR/move-of-addr-of-mut.rs:8:5 + | +LL | let mut x: S; + | ----- binding declared here but left uninitialized +LL | std::ptr::addr_of_mut!(x); + | ^^^^^^^^^^^^^^^^^^^^^^^^^ `x` used here but it isn't initialized + | + = note: this error originates in the macro `std::ptr::addr_of_mut` (in Nightly builds, run with -Z macro-backtrace for more info) +help: consider assigning a value + | +LL | let mut x: S = todo!(); + | +++++++++ + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0381`. -- cgit v1.2.3