summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/disallow-possibly-uninitialized.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
commita4b7ed7a42c716ab9f05e351f003d589124fd55d (patch)
treeb620cd3f223850b28716e474e80c58059dca5dd4 /src/test/ui/borrowck/disallow-possibly-uninitialized.stderr
parentAdding upstream version 1.67.1+dfsg1. (diff)
downloadrustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.tar.xz
rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.zip
Adding upstream version 1.68.2+dfsg1.upstream/1.68.2+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/borrowck/disallow-possibly-uninitialized.stderr')
-rw-r--r--src/test/ui/borrowck/disallow-possibly-uninitialized.stderr43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/test/ui/borrowck/disallow-possibly-uninitialized.stderr b/src/test/ui/borrowck/disallow-possibly-uninitialized.stderr
deleted file mode 100644
index 9a84c6fef..000000000
--- a/src/test/ui/borrowck/disallow-possibly-uninitialized.stderr
+++ /dev/null
@@ -1,43 +0,0 @@
-error[E0381]: partially assigned binding `t` isn't fully initialized
- --> $DIR/disallow-possibly-uninitialized.rs:6:5
- |
-LL | let mut t: (u64, u64);
- | ----- binding declared here but left uninitialized
-LL | t.0 = 1;
- | ^^^^^^^ `t` 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 `t` isn't fully initialized
- --> $DIR/disallow-possibly-uninitialized.rs:11:5
- |
-LL | let mut t: (u64, u64);
- | ----- binding declared here but left uninitialized
-LL | t.1 = 1;
- | ^^^^^^^ `t` 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 `t` isn't fully initialized
- --> $DIR/disallow-possibly-uninitialized.rs:16:5
- |
-LL | let mut t: (u64, u64);
- | ----- binding declared here but left uninitialized
-LL | t.0 = 1;
- | ^^^^^^^ `t` 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 `t` isn't fully initialized
- --> $DIR/disallow-possibly-uninitialized.rs:20:5
- |
-LL | let mut t: (u64,);
- | ----- binding declared here but left uninitialized
-LL | t.0 = 1;
- | ^^^^^^^ `t` 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 4 previous errors
-
-For more information about this error, try `rustc --explain E0381`.