summaryrefslogtreecommitdiffstats
path: root/src/test/ui/liveness/liveness-upvars.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-upvars.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-upvars.stderr')
-rw-r--r--src/test/ui/liveness/liveness-upvars.stderr185
1 files changed, 0 insertions, 185 deletions
diff --git a/src/test/ui/liveness/liveness-upvars.stderr b/src/test/ui/liveness/liveness-upvars.stderr
deleted file mode 100644
index 82f62371e..000000000
--- a/src/test/ui/liveness/liveness-upvars.stderr
+++ /dev/null
@@ -1,185 +0,0 @@
-warning: value assigned to `last` is never read
- --> $DIR/liveness-upvars.rs:10:9
- |
-LL | last = Some(s);
- | ^^^^
- |
- = help: maybe it is overwritten before being read?
-note: the lint level is defined here
- --> $DIR/liveness-upvars.rs:4:9
- |
-LL | #![warn(unused)]
- | ^^^^^^
- = note: `#[warn(unused_assignments)]` implied by `#[warn(unused)]`
-
-warning: unused variable: `last`
- --> $DIR/liveness-upvars.rs:10:9
- |
-LL | last = Some(s);
- | ^^^^
- |
- = help: did you mean to capture by reference instead?
- = note: `#[warn(unused_variables)]` implied by `#[warn(unused)]`
-
-warning: unused variable: `sum`
- --> $DIR/liveness-upvars.rs:22:9
- |
-LL | sum += x;
- | ^^^
- |
- = help: did you mean to capture by reference instead?
-
-warning: value captured by `c` is never read
- --> $DIR/liveness-upvars.rs:32:9
- |
-LL | c = 1;
- | ^
- |
- = help: did you mean to capture by reference instead?
-
-warning: value captured by `c` is never read
- --> $DIR/liveness-upvars.rs:36:9
- |
-LL | c = 1;
- | ^
- |
- = help: did you mean to capture by reference instead?
-
-warning: unused variable: `c`
- --> $DIR/liveness-upvars.rs:42:9
- |
-LL | c += 1;
- | ^
- |
- = help: did you mean to capture by reference instead?
-
-warning: value assigned to `c` is never read
- --> $DIR/liveness-upvars.rs:45:9
- |
-LL | c += 1;
- | ^
- |
- = help: maybe it is overwritten before being read?
-
-warning: unused variable: `c`
- --> $DIR/liveness-upvars.rs:45:9
- |
-LL | c += 1;
- | ^
- |
- = help: did you mean to capture by reference instead?
-
-warning: value assigned to `c` is never read
- --> $DIR/liveness-upvars.rs:58:9
- |
-LL | c += 1;
- | ^
- |
- = help: maybe it is overwritten before being read?
-
-warning: value assigned to `c` is never read
- --> $DIR/liveness-upvars.rs:64:9
- |
-LL | c += 1;
- | ^
- |
- = help: maybe it is overwritten before being read?
-
-warning: value assigned to `d` is never read
- --> $DIR/liveness-upvars.rs:73:13
- |
-LL | d = Some("d1");
- | ^
- |
- = help: maybe it is overwritten before being read?
-
-warning: value assigned to `e` is never read
- --> $DIR/liveness-upvars.rs:77:13
- |
-LL | e = Some("e1");
- | ^
- |
- = help: maybe it is overwritten before being read?
-
-warning: value assigned to `e` is never read
- --> $DIR/liveness-upvars.rs:79:13
- |
-LL | e = Some("e2");
- | ^
- |
- = help: maybe it is overwritten before being read?
-
-warning: unused variable: `e`
- --> $DIR/liveness-upvars.rs:77:13
- |
-LL | e = Some("e1");
- | ^
- |
- = help: did you mean to capture by reference instead?
-
-warning: value assigned to `v` is never read
- --> $DIR/liveness-upvars.rs:87:13
- |
-LL | v = T::default();
- | ^
- |
- = help: maybe it is overwritten before being read?
-
-warning: value assigned to `z` is never read
- --> $DIR/liveness-upvars.rs:99:17
- |
-LL | z = T::default();
- | ^
- |
- = help: maybe it is overwritten before being read?
-
-warning: unused variable: `z`
- --> $DIR/liveness-upvars.rs:99:17
- |
-LL | z = T::default();
- | ^
- |
- = help: did you mean to capture by reference instead?
-
-warning: value assigned to `state` is never read
- --> $DIR/liveness-upvars.rs:125:9
- |
-LL | state = 4;
- | ^^^^^
- |
- = help: maybe it is overwritten before being read?
-
-warning: value assigned to `state` is never read
- --> $DIR/liveness-upvars.rs:128:9
- |
-LL | state = 5;
- | ^^^^^
- |
- = help: maybe it is overwritten before being read?
-
-warning: unused variable: `state`
- --> $DIR/liveness-upvars.rs:125:9
- |
-LL | state = 4;
- | ^^^^^
- |
- = help: did you mean to capture by reference instead?
-
-warning: value assigned to `s` is never read
- --> $DIR/liveness-upvars.rs:137:9
- |
-LL | s = 1;
- | ^
- |
- = help: maybe it is overwritten before being read?
-
-warning: value assigned to `s` is never read
- --> $DIR/liveness-upvars.rs:139:9
- |
-LL | s = yield ();
- | ^
- |
- = help: maybe it is overwritten before being read?
-
-warning: 22 warnings emitted
-