summaryrefslogtreecommitdiffstats
path: root/tests/ui/reachable/expr_struct.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 /tests/ui/reachable/expr_struct.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 'tests/ui/reachable/expr_struct.stderr')
-rw-r--r--tests/ui/reachable/expr_struct.stderr42
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/ui/reachable/expr_struct.stderr b/tests/ui/reachable/expr_struct.stderr
new file mode 100644
index 000000000..36b070456
--- /dev/null
+++ b/tests/ui/reachable/expr_struct.stderr
@@ -0,0 +1,42 @@
+error: unreachable expression
+ --> $DIR/expr_struct.rs:14:13
+ |
+LL | let x = Foo { a: 22, b: 33, ..return };
+ | ^^^^^^^^^^^^^^^^^^^^^^------^^
+ | | |
+ | | any code following this expression is unreachable
+ | unreachable expression
+ |
+note: the lint level is defined here
+ --> $DIR/expr_struct.rs:4:9
+ |
+LL | #![deny(unreachable_code)]
+ | ^^^^^^^^^^^^^^^^
+
+error: unreachable expression
+ --> $DIR/expr_struct.rs:19:33
+ |
+LL | let x = Foo { a: return, b: 33, ..return };
+ | ------ ^^ unreachable expression
+ | |
+ | any code following this expression is unreachable
+
+error: unreachable expression
+ --> $DIR/expr_struct.rs:24:39
+ |
+LL | let x = Foo { a: 22, b: return, ..return };
+ | ------ ^^^^^^ unreachable expression
+ | |
+ | any code following this expression is unreachable
+
+error: unreachable expression
+ --> $DIR/expr_struct.rs:29:13
+ |
+LL | let x = Foo { a: 22, b: return };
+ | ^^^^^^^^^^^^^^^^------^^
+ | | |
+ | | any code following this expression is unreachable
+ | unreachable expression
+
+error: aborting due to 4 previous errors
+