From a4b7ed7a42c716ab9f05e351f003d589124fd55d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:18:58 +0200 Subject: Adding upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- .../borrowck/reassignment_immutable_fields.stderr | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tests/ui/borrowck/reassignment_immutable_fields.stderr (limited to 'tests/ui/borrowck/reassignment_immutable_fields.stderr') diff --git a/tests/ui/borrowck/reassignment_immutable_fields.stderr b/tests/ui/borrowck/reassignment_immutable_fields.stderr new file mode 100644 index 000000000..e6b25573e --- /dev/null +++ b/tests/ui/borrowck/reassignment_immutable_fields.stderr @@ -0,0 +1,23 @@ +error[E0381]: partially assigned binding `x` isn't fully initialized + --> $DIR/reassignment_immutable_fields.rs:7:5 + | +LL | let x: (u32, u32); + | - binding declared here but left uninitialized +LL | x.0 = 1; + | ^^^^^^^ `x` partially assigned here but it isn't fully initialized + | + = help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit` + +error[E0381]: partially assigned binding `x` isn't fully initialized + --> $DIR/reassignment_immutable_fields.rs:15:5 + | +LL | let x: (u32, u32); + | - binding declared here but left uninitialized +LL | x.0 = 1; + | ^^^^^^^ `x` partially assigned here but it isn't fully initialized + | + = help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit` + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0381`. -- cgit v1.2.3