summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/redundant_type_annotations.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
commitdc0db358abe19481e475e10c32149b53370f1a1c (patch)
treeab8ce99c4b255ce46f99ef402c27916055b899ee /src/tools/clippy/tests/ui/redundant_type_annotations.stderr
parentReleasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff)
downloadrustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz
rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/clippy/tests/ui/redundant_type_annotations.stderr')
-rw-r--r--src/tools/clippy/tests/ui/redundant_type_annotations.stderr106
1 files changed, 106 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/redundant_type_annotations.stderr b/src/tools/clippy/tests/ui/redundant_type_annotations.stderr
new file mode 100644
index 000000000..988ebe637
--- /dev/null
+++ b/src/tools/clippy/tests/ui/redundant_type_annotations.stderr
@@ -0,0 +1,106 @@
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:81:9
+ |
+LL | let v: u32 = self.return_an_int();
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ |
+ = note: `-D clippy::redundant-type-annotations` implied by `-D warnings`
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:82:9
+ |
+LL | let v: &u32 = self.return_a_ref();
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:83:9
+ |
+LL | let v: &Slice = self.return_a_ref_to_struct();
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:155:5
+ |
+LL | let _return: String = return_a_string();
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:157:5
+ |
+LL | let _return: Pie = return_a_struct();
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:159:5
+ |
+LL | let _return: Pizza = return_an_enum();
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:161:5
+ |
+LL | let _return: u32 = return_an_int();
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:163:5
+ |
+LL | let _return: String = String::new();
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:165:5
+ |
+LL | let new_pie: Pie = Pie::new();
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:167:5
+ |
+LL | let _return: u32 = new_pie.return_an_int();
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:169:5
+ |
+LL | let _return: u32 = Pie::associated_return_an_int();
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:171:5
+ |
+LL | let _return: String = Pie::associated_return_a_string();
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:177:5
+ |
+LL | let _var: u32 = u32::MAX;
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:179:5
+ |
+LL | let _var: u32 = 5_u32;
+ | ^^^^^^^^^^^^^^^^^^^^^^
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:181:5
+ |
+LL | let _var: &str = "test";
+ | ^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:183:5
+ |
+LL | let _var: &[u8] = b"test";
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: redundant type annotation
+ --> $DIR/redundant_type_annotations.rs:185:5
+ |
+LL | let _var: bool = false;
+ | ^^^^^^^^^^^^^^^^^^^^^^^
+
+error: aborting due to 17 previous errors
+