2019-04-15 12:09:37 -05:00
|
|
|
error: unused variable: `field`
|
2019-12-31 17:20:34 -06:00
|
|
|
--> $DIR/issue-54180-unused-ref-field.rs:20:22
|
2019-04-15 12:09:37 -05:00
|
|
|
|
|
|
|
|
LL | E::Variant { ref field } => (),
|
2019-12-31 17:20:34 -06:00
|
|
|
| ^^^^^^^^^ help: try ignoring the field: `field: _`
|
2019-04-15 12:09:37 -05:00
|
|
|
|
|
2020-01-22 17:57:38 -06:00
|
|
|
note: the lint level is defined here
|
2019-04-15 12:09:37 -05:00
|
|
|
--> $DIR/issue-54180-unused-ref-field.rs:3:9
|
|
|
|
|
|
|
|
|
LL | #![deny(unused)]
|
|
|
|
| ^^^^^^
|
2019-07-16 15:17:38 -05:00
|
|
|
= note: `#[deny(unused_variables)]` implied by `#[deny(unused)]`
|
2019-04-15 12:09:37 -05:00
|
|
|
|
|
|
|
error: unused variable: `f1`
|
2019-12-31 17:20:34 -06:00
|
|
|
--> $DIR/issue-54180-unused-ref-field.rs:26:13
|
2019-04-15 12:09:37 -05:00
|
|
|
|
|
|
|
|
LL | let S { ref f1 } = s;
|
2019-12-31 17:20:34 -06:00
|
|
|
| ^^^^^^ help: try ignoring the field: `f1: _`
|
2019-04-15 12:09:37 -05:00
|
|
|
|
|
|
|
error: unused variable: `x`
|
2019-12-31 17:20:34 -06:00
|
|
|
--> $DIR/issue-54180-unused-ref-field.rs:32:20
|
2019-04-15 12:09:37 -05:00
|
|
|
|
|
|
|
|
LL | Point { y, ref mut x } => y,
|
2019-12-31 17:20:34 -06:00
|
|
|
| ^^^^^^^^^ help: try ignoring the field: `x: _`
|
2019-04-15 12:09:37 -05:00
|
|
|
|
2022-08-23 06:53:02 -05:00
|
|
|
error: unused variable: `x`
|
|
|
|
--> $DIR/issue-54180-unused-ref-field.rs:29:45
|
|
|
|
|
|
|
|
|
LL | let _: i32 = points.iter().map(|Point { x, y }| y).sum();
|
|
|
|
| ^ help: try ignoring the field: `x: _`
|
|
|
|
|
2019-04-15 12:09:37 -05:00
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|