mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
27 lines
750 B
Plaintext
27 lines
750 B
Plaintext
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
|
|
|