summaryrefslogtreecommitdiffstats
path: root/src/test/ui/span/borrowck-let-suggestion-suffixes.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /src/test/ui/span/borrowck-let-suggestion-suffixes.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/span/borrowck-let-suggestion-suffixes.stderr')
-rw-r--r--src/test/ui/span/borrowck-let-suggestion-suffixes.stderr63
1 files changed, 0 insertions, 63 deletions
diff --git a/src/test/ui/span/borrowck-let-suggestion-suffixes.stderr b/src/test/ui/span/borrowck-let-suggestion-suffixes.stderr
deleted file mode 100644
index 2dc29a78d..000000000
--- a/src/test/ui/span/borrowck-let-suggestion-suffixes.stderr
+++ /dev/null
@@ -1,63 +0,0 @@
-error[E0597]: `young[_]` does not live long enough
- --> $DIR/borrowck-let-suggestion-suffixes.rs:12:17
- |
-LL | v2.push(&young[0]); // statement 4
- | ^^^^^^^^^ borrowed value does not live long enough
-...
-LL | }
- | - `young[_]` dropped here while still borrowed
-...
-LL | (v1, v2, v3, /* v4 is above. */ v5).use_ref();
- | -- borrow later used here
-
-error[E0716]: temporary value dropped while borrowed
- --> $DIR/borrowck-let-suggestion-suffixes.rs:19:14
- |
-LL | v3.push(&id('x')); // statement 6
- | ^^^^^^^ - temporary value is freed at the end of this statement
- | |
- | creates a temporary value which is freed while still in use
-...
-LL | (v1, v2, v3, /* v4 is above. */ v5).use_ref();
- | -- borrow later used here
- |
-help: consider using a `let` binding to create a longer lived value
- |
-LL ~ let binding = id('x');
-LL ~ v3.push(&binding); // statement 6
- |
-
-error[E0716]: temporary value dropped while borrowed
- --> $DIR/borrowck-let-suggestion-suffixes.rs:29:18
- |
-LL | v4.push(&id('y'));
- | ^^^^^^^ - temporary value is freed at the end of this statement
- | |
- | creates a temporary value which is freed while still in use
-...
-LL | v4.use_ref();
- | ------------ borrow later used here
- |
- = note: consider using a `let` binding to create a longer lived value
-
-error[E0716]: temporary value dropped while borrowed
- --> $DIR/borrowck-let-suggestion-suffixes.rs:40:14
- |
-LL | v5.push(&id('z'));
- | ^^^^^^^ - temporary value is freed at the end of this statement
- | |
- | creates a temporary value which is freed while still in use
-...
-LL | (v1, v2, v3, /* v4 is above. */ v5).use_ref();
- | -- borrow later used here
- |
-help: consider using a `let` binding to create a longer lived value
- |
-LL ~ let binding = id('z');
-LL ~ v5.push(&binding);
- |
-
-error: aborting due to 4 previous errors
-
-Some errors have detailed explanations: E0597, E0716.
-For more information about an error, try `rustc --explain E0597`.