summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/unused-borrows.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/lint/unused-borrows.stderr')
-rw-r--r--src/test/ui/lint/unused-borrows.stderr73
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
-