diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:03 +0000 |
commit | 64d98f8ee037282c35007b64c2649055c56af1db (patch) | |
tree | 5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /tests/ui/reachable/expr_struct.stderr | |
parent | Adding debian version 1.67.1+dfsg1-1. (diff) | |
download | rustc-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 'tests/ui/reachable/expr_struct.stderr')
-rw-r--r-- | tests/ui/reachable/expr_struct.stderr | 42 |
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 + |