]> git.lizzy.rs Git - rust.git/blob - clippy_tests/examples/neg_multiply.stderr
Fix the test suite after cargo update
[rust.git] / clippy_tests / examples / neg_multiply.stderr
1 error: Negation by multiplying with -1
2   --> neg_multiply.rs:30:5
3    |
4 30 |     x * -1;
5    |     ^^^^^^
6    |
7    = note: `-D neg-multiply` implied by `-D warnings`
8
9 error: Negation by multiplying with -1
10   --> neg_multiply.rs:32:5
11    |
12 32 |     -1 * x;
13    |     ^^^^^^
14    |
15    = note: `-D neg-multiply` implied by `-D warnings`
16
17 error: aborting due to previous error(s)
18
19
20 To learn more, run the command again with --verbose.