summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-6250.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/crashes/ice-6250.stderr')
-rw-r--r--src/tools/clippy/tests/ui/crashes/ice-6250.stderr16
1 files changed, 2 insertions, 14 deletions
diff --git a/src/tools/clippy/tests/ui/crashes/ice-6250.stderr b/src/tools/clippy/tests/ui/crashes/ice-6250.stderr
index 4506d1550..97390af3e 100644
--- a/src/tools/clippy/tests/ui/crashes/ice-6250.stderr
+++ b/src/tools/clippy/tests/ui/crashes/ice-6250.stderr
@@ -1,9 +1,3 @@
-error[E0601]: `main` function not found in crate `ice_6250`
- --> $DIR/ice-6250.rs:16:2
- |
-LL | }
- | ^ consider adding a `main` function to `$DIR/ice-6250.rs`
-
error[E0308]: mismatched types
--> $DIR/ice-6250.rs:12:14
|
@@ -12,11 +6,6 @@ LL | for reference in vec![1, 2, 3] {
...
LL | Some(reference) = cache.data.get(key) {
| ^^^^^^^^^ expected integer, found `&i32`
- |
-help: consider dereferencing the borrow
- |
-LL | Some(*reference) = cache.data.get(key) {
- | +
error[E0308]: mismatched types
--> $DIR/ice-6250.rs:12:9
@@ -29,7 +18,6 @@ help: consider adding `let`
LL | let Some(reference) = cache.data.get(key) {
| +++
-error: aborting due to 3 previous errors
+error: aborting due to 2 previous errors
-Some errors have detailed explanations: E0308, E0601.
-For more information about an error, try `rustc --explain E0308`.
+For more information about this error, try `rustc --explain E0308`.