summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/manual_non_exhaustive_struct.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/manual_non_exhaustive_struct.stderr')
-rw-r--r--src/tools/clippy/tests/ui/manual_non_exhaustive_struct.stderr22
1 files changed, 21 insertions, 1 deletions
diff --git a/src/tools/clippy/tests/ui/manual_non_exhaustive_struct.stderr b/src/tools/clippy/tests/ui/manual_non_exhaustive_struct.stderr
index 028b8ff76..0b88b1969 100644
--- a/src/tools/clippy/tests/ui/manual_non_exhaustive_struct.stderr
+++ b/src/tools/clippy/tests/ui/manual_non_exhaustive_struct.stderr
@@ -39,6 +39,26 @@ LL | _c: (),
| ^^^^^^
error: this seems like a manual implementation of the non-exhaustive pattern
+ --> $DIR/manual_non_exhaustive_struct.rs:29:5
+ |
+LL | struct NoUnderscore {
+ | ^------------------
+ | |
+ | _____help: add the attribute: `#[non_exhaustive] struct NoUnderscore`
+ | |
+LL | | pub a: i32,
+LL | | pub b: i32,
+LL | | c: (),
+LL | | }
+ | |_____^
+ |
+help: remove this field
+ --> $DIR/manual_non_exhaustive_struct.rs:32:9
+ |
+LL | c: (),
+ | ^^^^^
+
+error: this seems like a manual implementation of the non-exhaustive pattern
--> $DIR/manual_non_exhaustive_struct.rs:56:5
|
LL | struct T(pub i32, pub i32, ());
@@ -64,5 +84,5 @@ help: remove this field
LL | struct Tp(pub i32, pub i32, ());
| ^^
-error: aborting due to 4 previous errors
+error: aborting due to 5 previous errors