]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/used_underscore_binding.stderr
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / used_underscore_binding.stderr
CommitLineData
f20569fa
XL
1error: used binding `_foo` which is prefixed with an underscore. A leading underscore signals that a binding will not be used
2 --> $DIR/used_underscore_binding.rs:26:5
3 |
4LL | _foo + 1
5 | ^^^^
6 |
7 = note: `-D clippy::used-underscore-binding` implied by `-D warnings`
8
9error: used binding `_foo` which is prefixed with an underscore. A leading underscore signals that a binding will not be used
10 --> $DIR/used_underscore_binding.rs:31:20
11 |
12LL | println!("{}", _foo);
13 | ^^^^
14
15error: used binding `_foo` which is prefixed with an underscore. A leading underscore signals that a binding will not be used
16 --> $DIR/used_underscore_binding.rs:32:16
17 |
18LL | assert_eq!(_foo, _foo);
19 | ^^^^
20
21error: used binding `_foo` which is prefixed with an underscore. A leading underscore signals that a binding will not be used
22 --> $DIR/used_underscore_binding.rs:32:22
23 |
24LL | assert_eq!(_foo, _foo);
25 | ^^^^
26
27error: used binding `_underscore_field` which is prefixed with an underscore. A leading underscore signals that a binding will not be used
28 --> $DIR/used_underscore_binding.rs:45:5
29 |
30LL | s._underscore_field += 1;
31 | ^^^^^^^^^^^^^^^^^^^
32
33error: used binding `_i` which is prefixed with an underscore. A leading underscore signals that a binding will not be used
34 --> $DIR/used_underscore_binding.rs:100:16
35 |
36LL | uses_i(_i);
37 | ^^
38
39error: aborting due to 6 previous errors
40