|
1 | 1 | error: using decimal literal for bitwise operation |
2 | | - --> tests/ui/decimal_bit_mask.rs:16:9 |
| 2 | + --> tests/ui/decimal_bitwise_operands.rs:16:9 |
3 | 3 | | |
4 | 4 | LL | x & 99; |
5 | 5 | | ^^ |
6 | 6 | | |
7 | 7 | = help: use binary (0b...), hex (0x...), or octal (0o...) notation for better readability |
8 | | - = note: `-D clippy::decimal-bit-mask` implied by `-D warnings` |
9 | | - = help: to override `-D warnings` add `#[allow(clippy::decimal_bit_mask)]` |
| 8 | + = note: `-D clippy::decimal-bitwise-operands` implied by `-D warnings` |
| 9 | + = help: to override `-D warnings` add `#[allow(clippy::decimal_bitwise_operands)]` |
10 | 10 |
|
11 | 11 | error: using decimal literal for bitwise operation |
12 | | - --> tests/ui/decimal_bit_mask.rs:17:23 |
| 12 | + --> tests/ui/decimal_bitwise_operands.rs:17:23 |
13 | 13 | | |
14 | 14 | LL | x | (/* comment */99); |
15 | 15 | | ^^ |
16 | 16 | | |
17 | 17 | = help: use binary (0b...), hex (0x...), or octal (0o...) notation for better readability |
18 | 18 |
|
19 | 19 | error: using decimal literal for bitwise operation |
20 | | - --> tests/ui/decimal_bit_mask.rs:18:10 |
| 20 | + --> tests/ui/decimal_bitwise_operands.rs:18:10 |
21 | 21 | | |
22 | 22 | LL | x ^ (99); |
23 | 23 | | ^^ |
24 | 24 | | |
25 | 25 | = help: use binary (0b...), hex (0x...), or octal (0o...) notation for better readability |
26 | 26 |
|
27 | 27 | error: using decimal literal for bitwise operation |
28 | | - --> tests/ui/decimal_bit_mask.rs:19:10 |
| 28 | + --> tests/ui/decimal_bitwise_operands.rs:19:10 |
29 | 29 | | |
30 | 30 | LL | x &= 99; |
31 | 31 | | ^^ |
32 | 32 | | |
33 | 33 | = help: use binary (0b...), hex (0x...), or octal (0o...) notation for better readability |
34 | 34 |
|
35 | 35 | error: using decimal literal for bitwise operation |
36 | | - --> tests/ui/decimal_bit_mask.rs:20:10 |
| 36 | + --> tests/ui/decimal_bitwise_operands.rs:20:10 |
37 | 37 | | |
38 | 38 | LL | x |= 99; |
39 | 39 | | ^^ |
40 | 40 | | |
41 | 41 | = help: use binary (0b...), hex (0x...), or octal (0o...) notation for better readability |
42 | 42 |
|
43 | 43 | error: using decimal literal for bitwise operation |
44 | | - --> tests/ui/decimal_bit_mask.rs:21:11 |
| 44 | + --> tests/ui/decimal_bitwise_operands.rs:21:11 |
45 | 45 | | |
46 | 46 | LL | x ^= (99); |
47 | 47 | | ^^ |
48 | 48 | | |
49 | 49 | = help: use binary (0b...), hex (0x...), or octal (0o...) notation for better readability |
50 | 50 |
|
51 | 51 | error: using decimal literal for bitwise operation |
52 | | - --> tests/ui/decimal_bit_mask.rs:24:14 |
| 52 | + --> tests/ui/decimal_bitwise_operands.rs:24:14 |
53 | 53 | | |
54 | 54 | LL | 0b1010 & 99; |
55 | 55 | | ^^ |
56 | 56 | | |
57 | 57 | = help: use binary (0b...), hex (0x...), or octal (0o...) notation for better readability |
58 | 58 |
|
59 | 59 | error: using decimal literal for bitwise operation |
60 | | - --> tests/ui/decimal_bit_mask.rs:25:15 |
| 60 | + --> tests/ui/decimal_bitwise_operands.rs:25:15 |
61 | 61 | | |
62 | 62 | LL | 0b1010 | (99); |
63 | 63 | | ^^ |
64 | 64 | | |
65 | 65 | = help: use binary (0b...), hex (0x...), or octal (0o...) notation for better readability |
66 | 66 |
|
67 | 67 | error: using decimal literal for bitwise operation |
68 | | - --> tests/ui/decimal_bit_mask.rs:26:28 |
| 68 | + --> tests/ui/decimal_bitwise_operands.rs:26:28 |
69 | 69 | | |
70 | 70 | LL | 0b1010 ^ (/* comment */99); |
71 | 71 | | ^^ |
72 | 72 | | |
73 | 73 | = help: use binary (0b...), hex (0x...), or octal (0o...) notation for better readability |
74 | 74 |
|
75 | 75 | error: using decimal literal for bitwise operation |
76 | | - --> tests/ui/decimal_bit_mask.rs:27:5 |
| 76 | + --> tests/ui/decimal_bitwise_operands.rs:27:5 |
77 | 77 | | |
78 | 78 | LL | 99 & 0b1010; |
79 | 79 | | ^^ |
80 | 80 | | |
81 | 81 | = help: use binary (0b...), hex (0x...), or octal (0o...) notation for better readability |
82 | 82 |
|
83 | 83 | error: using decimal literal for bitwise operation |
84 | | - --> tests/ui/decimal_bit_mask.rs:28:6 |
| 84 | + --> tests/ui/decimal_bitwise_operands.rs:28:6 |
85 | 85 | | |
86 | 86 | LL | (99) | 0b1010; |
87 | 87 | | ^^ |
88 | 88 | | |
89 | 89 | = help: use binary (0b...), hex (0x...), or octal (0o...) notation for better readability |
90 | 90 |
|
91 | 91 | error: using decimal literal for bitwise operation |
92 | | - --> tests/ui/decimal_bit_mask.rs:29:19 |
| 92 | + --> tests/ui/decimal_bitwise_operands.rs:29:19 |
93 | 93 | | |
94 | 94 | LL | (/* comment */99) ^ 0b1010; |
95 | 95 | | ^^ |
96 | 96 | | |
97 | 97 | = help: use binary (0b...), hex (0x...), or octal (0o...) notation for better readability |
98 | 98 |
|
99 | 99 | error: using decimal literal for bitwise operation |
100 | | - --> tests/ui/decimal_bit_mask.rs:30:11 |
| 100 | + --> tests/ui/decimal_bitwise_operands.rs:30:11 |
101 | 101 | | |
102 | 102 | LL | 0xD | 99; |
103 | 103 | | ^^ |
104 | 104 | | |
105 | 105 | = help: use binary (0b...), hex (0x...), or octal (0o...) notation for better readability |
106 | 106 |
|
107 | 107 | error: using decimal literal for bitwise operation |
108 | | - --> tests/ui/decimal_bit_mask.rs:31:5 |
| 108 | + --> tests/ui/decimal_bitwise_operands.rs:31:5 |
109 | 109 | | |
110 | 110 | LL | 88 & 99; |
111 | 111 | | ^^ |
112 | 112 | | |
113 | 113 | = help: use binary (0b...), hex (0x...), or octal (0o...) notation for better readability |
114 | 114 |
|
115 | 115 | error: using decimal literal for bitwise operation |
116 | | - --> tests/ui/decimal_bit_mask.rs:31:10 |
| 116 | + --> tests/ui/decimal_bitwise_operands.rs:31:10 |
117 | 117 | | |
118 | 118 | LL | 88 & 99; |
119 | 119 | | ^^ |
|
0 commit comments