diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:13 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:13 +0000 |
commit | 218caa410aa38c29984be31a5229b9fa717560ee (patch) | |
tree | c54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/lint/unused-borrows.stderr | |
parent | Releasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff) | |
download | rustc-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/lint/unused-borrows.stderr')
-rw-r--r-- | src/test/ui/lint/unused-borrows.stderr | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/src/test/ui/lint/unused-borrows.stderr b/src/test/ui/lint/unused-borrows.stderr deleted file mode 100644 index d8dd2b5fd..000000000 --- a/src/test/ui/lint/unused-borrows.stderr +++ /dev/null @@ -1,73 +0,0 @@ -error: unused borrow that must be used - --> $DIR/unused-borrows.rs:6:5 - | -LL | &42; - | ^^^ the borrow produces a value - | -note: the lint level is defined here - --> $DIR/unused-borrows.rs:1:9 - | -LL | #![deny(unused_must_use)] - | ^^^^^^^^^^^^^^^ -help: use `let _ = ...` to ignore the resulting value - | -LL | let _ = &42; - | +++++++ - -error: unused borrow that must be used - --> $DIR/unused-borrows.rs:9:5 - | -LL | &mut foo(42); - | ^^^^^^^^^^^^ the borrow produces a value - | -help: use `let _ = ...` to ignore the resulting value - | -LL | let _ = &mut foo(42); - | +++++++ - -error: unused borrow that must be used - --> $DIR/unused-borrows.rs:12:5 - | -LL | &&42; - | ^^^^ the borrow produces a value - | -help: use `let _ = ...` to ignore the resulting value - | -LL | let _ = &&42; - | +++++++ - -error: unused borrow that must be used - --> $DIR/unused-borrows.rs:15:5 - | -LL | &&mut 42; - | ^^^^^^^^ the borrow produces a value - | -help: use `let _ = ...` to ignore the resulting value - | -LL | let _ = &&mut 42; - | +++++++ - -error: unused borrow that must be used - --> $DIR/unused-borrows.rs:18:5 - | -LL | &mut &42; - | ^^^^^^^^ the borrow produces a value - | -help: use `let _ = ...` to ignore the resulting value - | -LL | let _ = &mut &42; - | +++++++ - -error: unused borrow that must be used - --> $DIR/unused-borrows.rs:23:5 - | -LL | && foo(42); - | ^^^^^^^^^^ the borrow produces a value - | -help: use `let _ = ...` to ignore the resulting value - | -LL | let _ = && foo(42); - | +++++++ - -error: aborting due to 6 previous errors - |