2017-02-07 14:05:30 -06:00
|
|
|
error: used binding `_foo` which is prefixed with an underscore. A leading underscore signals that a binding will not be used.
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/used_underscore_binding.rs:17:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-02-08 07:58:07 -06:00
|
|
|
17 | _foo + 1
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^
|
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::used-underscore-binding` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: used binding `_foo` which is prefixed with an underscore. A leading underscore signals that a binding will not be used.
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/used_underscore_binding.rs:22:20
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
22 | println!("{}", _foo);
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: used binding `_foo` which is prefixed with an underscore. A leading underscore signals that a binding will not be used.
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/used_underscore_binding.rs:23:16
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 10:05:22 -05:00
|
|
|
23 | assert_eq!(_foo, _foo);
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: used binding `_foo` which is prefixed with an underscore. A leading underscore signals that a binding will not be used.
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/used_underscore_binding.rs:23:22
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 10:05:22 -05:00
|
|
|
23 | assert_eq!(_foo, _foo);
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: used binding `_underscore_field` which is prefixed with an underscore. A leading underscore signals that a binding will not be used.
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/used_underscore_binding.rs:36:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 10:05:22 -05:00
|
|
|
36 | s._underscore_field += 1;
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|