summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mir/issue-92893.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/mir/issue-92893.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/mir/issue-92893.stderr')
-rw-r--r--src/test/ui/mir/issue-92893.stderr26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/test/ui/mir/issue-92893.stderr b/src/test/ui/mir/issue-92893.stderr
deleted file mode 100644
index 4a0fcce31..000000000
--- a/src/test/ui/mir/issue-92893.stderr
+++ /dev/null
@@ -1,26 +0,0 @@
-error: expected expression, found `let` statement
- --> $DIR/issue-92893.rs:1:22
- |
-LL | struct Bug<A = [(); (let a = (), 1).1]> {
- | ^^^
-
-error: `let` expressions are not supported here
- --> $DIR/issue-92893.rs:1:22
- |
-LL | struct Bug<A = [(); (let a = (), 1).1]> {
- | ^^^^^^^^^^
- |
- = note: only supported directly in conditions of `if` and `while` expressions
-
-error[E0658]: `let` expressions in this position are unstable
- --> $DIR/issue-92893.rs:1:22
- |
-LL | struct Bug<A = [(); (let a = (), 1).1]> {
- | ^^^^^^^^^^
- |
- = note: see issue #53667 <https://github.com/rust-lang/rust/issues/53667> for more information
- = help: add `#![feature(let_chains)]` to the crate attributes to enable
-
-error: aborting due to 3 previous errors
-
-For more information about this error, try `rustc --explain E0658`.