summaryrefslogtreecommitdiffstats
path: root/src/test/ui/liveness/liveness-consts.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/liveness/liveness-consts.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/liveness/liveness-consts.stderr')
-rw-r--r--src/test/ui/liveness/liveness-consts.stderr63
1 files changed, 0 insertions, 63 deletions
diff --git a/src/test/ui/liveness/liveness-consts.stderr b/src/test/ui/liveness/liveness-consts.stderr
deleted file mode 100644
index 6199ea96c..000000000
--- a/src/test/ui/liveness/liveness-consts.stderr
+++ /dev/null
@@ -1,63 +0,0 @@
-warning: variable `a` is assigned to, but never used
- --> $DIR/liveness-consts.rs:7:13
- |
-LL | let mut a = 0;
- | ^
- |
- = note: consider using `_a` instead
-note: the lint level is defined here
- --> $DIR/liveness-consts.rs:2:9
- |
-LL | #![warn(unused)]
- | ^^^^^^
- = note: `#[warn(unused_variables)]` implied by `#[warn(unused)]`
-
-warning: value assigned to `b` is never read
- --> $DIR/liveness-consts.rs:17:5
- |
-LL | b += 1;
- | ^
- |
- = help: maybe it is overwritten before being read?
- = note: `#[warn(unused_assignments)]` implied by `#[warn(unused)]`
-
-warning: unused variable: `e`
- --> $DIR/liveness-consts.rs:24:13
- |
-LL | let e = 1;
- | ^ help: if this is intentional, prefix it with an underscore: `_e`
-
-warning: unused variable: `s`
- --> $DIR/liveness-consts.rs:33:24
- |
-LL | pub fn f(x: [u8; { let s = 17; 100 }]) -> [u8; { let z = 18; 100 }] {
- | ^ help: if this is intentional, prefix it with an underscore: `_s`
-
-warning: unused variable: `z`
- --> $DIR/liveness-consts.rs:33:55
- |
-LL | pub fn f(x: [u8; { let s = 17; 100 }]) -> [u8; { let z = 18; 100 }] {
- | ^ help: if this is intentional, prefix it with an underscore: `_z`
-
-warning: value assigned to `t` is never read
- --> $DIR/liveness-consts.rs:42:9
- |
-LL | t = t + t;
- | ^
- |
- = help: maybe it is overwritten before being read?
-
-warning: unused variable: `w`
- --> $DIR/liveness-consts.rs:49:13
- |
-LL | let w = 10;
- | ^ help: if this is intentional, prefix it with an underscore: `_w`
-
-warning: unused variable: `z`
- --> $DIR/liveness-consts.rs:60:13
- |
-LL | let z = 42;
- | ^ help: if this is intentional, prefix it with an underscore: `_z`
-
-warning: 8 warnings emitted
-