rust/tests/ui/lint/unused/lint-unused-variables.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

75 lines
2.1 KiB
Plaintext
Raw Normal View History

2019-07-26 17:52:37 -05:00
error: unused variable: `a`
--> $DIR/lint-unused-variables.rs:8:5
|
LL | a: i32,
2020-03-23 03:02:46 -05:00
| ^ help: if this is intentional, prefix it with an underscore: `_a`
2019-07-26 17:52:37 -05:00
|
2020-01-22 17:57:38 -06:00
note: the lint level is defined here
2019-07-26 17:52:37 -05:00
--> $DIR/lint-unused-variables.rs:5:9
|
LL | #![deny(unused_variables)]
| ^^^^^^^^^^^^^^^^
error: unused variable: `b`
--> $DIR/lint-unused-variables.rs:14:5
|
LL | b: i32,
2020-03-23 03:02:46 -05:00
| ^ help: if this is intentional, prefix it with an underscore: `_b`
2019-07-26 17:52:37 -05:00
error: unused variable: `a`
2022-08-23 06:53:02 -05:00
--> $DIR/lint-unused-variables.rs:22:9
2019-07-26 17:52:37 -05:00
|
LL | a: i32,
2020-03-23 03:02:46 -05:00
| ^ help: if this is intentional, prefix it with an underscore: `_a`
2019-07-26 17:52:37 -05:00
error: unused variable: `b`
2022-08-23 06:53:02 -05:00
--> $DIR/lint-unused-variables.rs:29:9
2019-07-26 17:52:37 -05:00
|
LL | b: i32,
2020-03-23 03:02:46 -05:00
| ^ help: if this is intentional, prefix it with an underscore: `_b`
2019-07-26 17:52:37 -05:00
error: unused variable: `b`
2022-08-23 06:53:02 -05:00
--> $DIR/lint-unused-variables.rs:34:9
|
LL | b: i32,
2020-03-23 03:02:46 -05:00
| ^ help: if this is intentional, prefix it with an underscore: `_b`
error: unused variable: `b`
2022-08-23 06:53:02 -05:00
--> $DIR/lint-unused-variables.rs:42:9
2019-07-26 17:52:37 -05:00
|
LL | b: i32,
2020-03-23 03:02:46 -05:00
| ^ help: if this is intentional, prefix it with an underscore: `_b`
2019-07-26 17:52:37 -05:00
error: unused variable: `b`
2022-08-23 06:53:02 -05:00
--> $DIR/lint-unused-variables.rs:47:9
2019-07-26 17:52:37 -05:00
|
LL | b: i32,
2020-03-23 03:02:46 -05:00
| ^ help: if this is intentional, prefix it with an underscore: `_b`
2019-07-26 17:52:37 -05:00
error: unused variable: `b`
2022-08-23 06:53:02 -05:00
--> $DIR/lint-unused-variables.rs:55:9
|
LL | b: i32,
2020-03-23 03:02:46 -05:00
| ^ help: if this is intentional, prefix it with an underscore: `_b`
error: unused variable: `b`
2022-08-23 06:53:02 -05:00
--> $DIR/lint-unused-variables.rs:60:9
|
LL | b: i32,
2020-03-23 03:02:46 -05:00
| ^ help: if this is intentional, prefix it with an underscore: `_b`
2022-08-23 06:53:02 -05:00
error: unused variable: `a`
--> $DIR/lint-unused-variables.rs:68:9
|
LL | a: i32,
| ^ help: if this is intentional, prefix it with an underscore: `_a`
error: unused variable: `b`
2022-08-23 06:53:02 -05:00
--> $DIR/lint-unused-variables.rs:74:9
2019-07-26 17:52:37 -05:00
|
LL | b: i32,
2020-03-23 03:02:46 -05:00
| ^ help: if this is intentional, prefix it with an underscore: `_b`
2019-07-26 17:52:37 -05:00
error: aborting due to 11 previous errors
2019-07-26 17:52:37 -05:00