mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
21 lines
598 B
Plaintext
21 lines
598 B
Plaintext
error: unused variable: `i`
|
|
--> $DIR/ignore-nested-field-binding.rs:11:27
|
|
|
|
|
LL | fn foo(Outer { o: Inner { i } }: Outer) {}
|
|
| ^ help: try ignoring the field: `i: _`
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/ignore-nested-field-binding.rs:6:11
|
|
|
|
|
LL | #![forbid(unused_variables)]
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: unused variable: `i`
|
|
--> $DIR/ignore-nested-field-binding.rs:17:28
|
|
|
|
|
LL | let Outer { o: Inner { i } } = s;
|
|
| ^ help: try ignoring the field: `i: _`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|