rust/clippy_tests/examples/used_underscore_binding.stderr

46 lines
1.6 KiB
Text
Raw Normal View History

error: used binding `_foo` which is prefixed with an underscore. A leading underscore signals that a binding will not be used.
--> examples/used_underscore_binding.rs:17:5
|
2017-02-08 14:58:07 +01:00
17 | _foo + 1
| ^^^^
|
= note: `-D used-underscore-binding` implied by `-D warnings`
error: used binding `_foo` which is prefixed with an underscore. A leading underscore signals that a binding will not be used.
--> examples/used_underscore_binding.rs:22:20
|
22 | println!("{}", _foo);
| ^^^^
|
= note: `-D used-underscore-binding` implied by `-D warnings`
error: used binding `_foo` which is prefixed with an underscore. A leading underscore signals that a binding will not be used.
--> examples/used_underscore_binding.rs:23:16
|
23 | assert_eq!(_foo, _foo);
| ^^^^
|
= note: `-D used-underscore-binding` implied by `-D warnings`
error: used binding `_foo` which is prefixed with an underscore. A leading underscore signals that a binding will not be used.
--> examples/used_underscore_binding.rs:23:22
|
23 | assert_eq!(_foo, _foo);
| ^^^^
|
= note: `-D used-underscore-binding` implied by `-D warnings`
error: used binding `_underscore_field` which is prefixed with an underscore. A leading underscore signals that a binding will not be used.
--> examples/used_underscore_binding.rs:36:5
|
36 | s._underscore_field += 1;
| ^^^^^^^^^^^^^^^^^^^
|
= note: `-D used-underscore-binding` implied by `-D warnings`
error: aborting due to 5 previous errors
error: Could not compile `clippy_tests`.
To learn more, run the command again with --verbose.