From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- src/tools/clippy/tests/ui/crashes/ice-6250.stderr | 30 +++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/tools/clippy/tests/ui/crashes/ice-6250.stderr (limited to 'src/tools/clippy/tests/ui/crashes/ice-6250.stderr') diff --git a/src/tools/clippy/tests/ui/crashes/ice-6250.stderr b/src/tools/clippy/tests/ui/crashes/ice-6250.stderr new file mode 100644 index 000000000..878897c41 --- /dev/null +++ b/src/tools/clippy/tests/ui/crashes/ice-6250.stderr @@ -0,0 +1,30 @@ +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 + | +LL | for reference in vec![1, 2, 3] { + | --------- expected due to the type of this binding +... +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 + | +LL | Some(reference) = cache.data.get(key) { + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `bool`, found `()` + +error: aborting due to 3 previous errors + +Some errors have detailed explanations: E0308, E0601. +For more information about an error, try `rustc --explain E0308`. -- cgit v1.2.3