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/borrowck/borrowck-break-uninit.stderr | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/ui/borrowck/borrowck-break-uninit.stderr (limited to 'tests/ui/borrowck/borrowck-break-uninit.stderr') diff --git a/tests/ui/borrowck/borrowck-break-uninit.stderr b/tests/ui/borrowck/borrowck-break-uninit.stderr new file mode 100644 index 000000000..a7a8fc2ff --- /dev/null +++ b/tests/ui/borrowck/borrowck-break-uninit.stderr @@ -0,0 +1,18 @@ +error[E0381]: used binding `x` isn't initialized + --> $DIR/borrowck-break-uninit.rs:9:20 + | +LL | let x: isize; + | - binding declared here but left uninitialized +... +LL | println!("{}", x); + | ^ `x` used here but it isn't initialized + | + = note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info) +help: consider assigning a value + | +LL | let x: isize = 0; + | +++ + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0381`. -- cgit v1.2.3