about summary refs log tree commit diff
path: root/tests/ui/suggestions/try-removing-the-field.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/try-removing-the-field.rs')
-rw-r--r--tests/ui/suggestions/try-removing-the-field.rs32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/ui/suggestions/try-removing-the-field.rs b/tests/ui/suggestions/try-removing-the-field.rs
new file mode 100644
index 00000000000..1b7289b229b
--- /dev/null
+++ b/tests/ui/suggestions/try-removing-the-field.rs
@@ -0,0 +1,32 @@
+// run-pass
+
+#![allow(dead_code)]
+
+struct Foo {
+    foo: i32,
+    bar: (),
+    baz: (),
+}
+
+fn use_foo(x: Foo) -> i32 {
+    let Foo { foo, bar, .. } = x; //~ WARNING unused variable: `bar`
+                                  //~| help: try removing the field
+    return foo;
+}
+
+// issue #105028, suggest removing the field only for shorthand
+fn use_match(x: Foo) {
+    match x {
+        Foo { foo: unused, .. } => { //~ WARNING unused variable
+                                     //~| help: if this is intentional, prefix it with an underscore
+        }
+    }
+
+    match x {
+        Foo { foo, .. } => { //~ WARNING unused variable
+                             //~| help: try removing the field
+        }
+    }
+}
+
+fn main() {}