summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/try-removing-the-field.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/try-removing-the-field.stderr')
-rw-r--r--tests/ui/suggestions/try-removing-the-field.stderr26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/ui/suggestions/try-removing-the-field.stderr b/tests/ui/suggestions/try-removing-the-field.stderr
new file mode 100644
index 000000000..7a6013d4a
--- /dev/null
+++ b/tests/ui/suggestions/try-removing-the-field.stderr
@@ -0,0 +1,26 @@
+warning: unused variable: `bar`
+ --> $DIR/try-removing-the-field.rs:12:20
+ |
+LL | let Foo { foo, bar, .. } = x;
+ | ^^^-
+ | |
+ | help: try removing the field
+ |
+ = note: `#[warn(unused_variables)]` on by default
+
+warning: unused variable: `unused`
+ --> $DIR/try-removing-the-field.rs:20:20
+ |
+LL | Foo { foo: unused, .. } => {
+ | ^^^^^^ help: if this is intentional, prefix it with an underscore: `_unused`
+
+warning: unused variable: `foo`
+ --> $DIR/try-removing-the-field.rs:26:15
+ |
+LL | Foo { foo, .. } => {
+ | ^^^-
+ | |
+ | help: try removing the field
+
+warning: 3 warnings emitted
+