2024-08-21 08:12:48 +00:00
|
|
|
error: used underscore-prefixed binding
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/used_underscore_binding.rs:23:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | _foo + 1
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
2024-08-21 08:12:48 +00:00
|
|
|
note: binding is defined here
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/used_underscore_binding.rs:22:22
|
2023-09-17 14:33:06 +00:00
|
|
|
|
|
|
|
|
LL | fn prefix_underscore(_foo: u32) -> u32 {
|
|
|
|
| ^^^^
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::used-underscore-binding` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::used_underscore_binding)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2024-08-21 08:12:48 +00:00
|
|
|
error: used underscore-prefixed binding
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/used_underscore_binding.rs:28:20
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("{}", _foo);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
2023-09-17 14:33:06 +00:00
|
|
|
|
|
2024-08-21 08:12:48 +00:00
|
|
|
note: binding is defined here
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/used_underscore_binding.rs:27:24
|
2023-09-17 14:33:06 +00:00
|
|
|
|
|
|
|
|
LL | fn in_macro_or_desugar(_foo: u32) {
|
|
|
|
| ^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2024-08-21 08:12:48 +00:00
|
|
|
error: used underscore-prefixed binding
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/used_underscore_binding.rs:29:16
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | assert_eq!(_foo, _foo);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
2023-09-17 14:33:06 +00:00
|
|
|
|
|
2024-08-21 08:12:48 +00:00
|
|
|
note: binding is defined here
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/used_underscore_binding.rs:27:24
|
2023-09-17 14:33:06 +00:00
|
|
|
|
|
|
|
|
LL | fn in_macro_or_desugar(_foo: u32) {
|
|
|
|
| ^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2024-08-21 08:12:48 +00:00
|
|
|
error: used underscore-prefixed binding
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/used_underscore_binding.rs:29:22
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | assert_eq!(_foo, _foo);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
2023-09-17 14:33:06 +00:00
|
|
|
|
|
2024-08-21 08:12:48 +00:00
|
|
|
note: binding is defined here
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/used_underscore_binding.rs:27:24
|
2023-09-17 14:33:06 +00:00
|
|
|
|
|
|
|
|
LL | fn in_macro_or_desugar(_foo: u32) {
|
|
|
|
| ^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2024-08-21 08:12:48 +00:00
|
|
|
error: used underscore-prefixed binding
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/used_underscore_binding.rs:42:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | s._underscore_field += 1;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2023-09-17 14:33:06 +00:00
|
|
|
|
|
2024-08-21 08:12:48 +00:00
|
|
|
note: binding is defined here
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/used_underscore_binding.rs:36:5
|
2023-09-17 14:33:06 +00:00
|
|
|
|
|
|
|
|
LL | _underscore_field: u32,
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2024-08-21 08:12:48 +00:00
|
|
|
error: used underscore-prefixed binding
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/used_underscore_binding.rs:103:16
|
2020-04-27 19:12:39 +00:00
|
|
|
|
|
|
|
|
LL | uses_i(_i);
|
|
|
|
| ^^
|
2023-09-17 14:33:06 +00:00
|
|
|
|
|
2024-08-21 08:12:48 +00:00
|
|
|
note: binding is defined here
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/used_underscore_binding.rs:102:13
|
2023-09-17 14:33:06 +00:00
|
|
|
|
|
|
|
|
LL | let _i = 5;
|
|
|
|
| ^^
|
2020-04-27 19:12:39 +00:00
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|