]> git.lizzy.rs Git - rust.git/blob - tests/ui/literals.stderr
Auto merge of #4314 - chansuke:add-negation-to-is_empty, r=flip1995
[rust.git] / tests / ui / literals.stderr
1 error: inconsistent casing in hexadecimal literal
2   --> $DIR/literals.rs:13:17
3    |
4 LL |     let fail1 = 0xabCD;
5    |                 ^^^^^^
6    |
7    = note: `-D clippy::mixed-case-hex-literals` implied by `-D warnings`
8
9 error: inconsistent casing in hexadecimal literal
10   --> $DIR/literals.rs:14:17
11    |
12 LL |     let fail2 = 0xabCD_u32;
13    |                 ^^^^^^^^^^
14
15 error: inconsistent casing in hexadecimal literal
16   --> $DIR/literals.rs:15:17
17    |
18 LL |     let fail2 = 0xabCD_isize;
19    |                 ^^^^^^^^^^^^
20
21 error: integer type suffix should be separated by an underscore
22   --> $DIR/literals.rs:16:27
23    |
24 LL |     let fail_multi_zero = 000_123usize;
25    |                           ^^^^^^^^^^^^
26    |
27    = note: `-D clippy::unseparated-literal-suffix` implied by `-D warnings`
28
29 error: this is a decimal constant
30   --> $DIR/literals.rs:16:27
31    |
32 LL |     let fail_multi_zero = 000_123usize;
33    |                           ^^^^^^^^^^^^
34    |
35    = note: `-D clippy::zero-prefixed-literal` implied by `-D warnings`
36 help: if you mean to use a decimal constant, remove the `0` to remove confusion
37    |
38 LL |     let fail_multi_zero = 123usize;
39    |                           ^^^^^^^^
40 help: if you mean to use an octal constant, use `0o`
41    |
42 LL |     let fail_multi_zero = 0o123usize;
43    |                           ^^^^^^^^^^
44
45 error: integer type suffix should be separated by an underscore
46   --> $DIR/literals.rs:21:17
47    |
48 LL |     let fail3 = 1234i32;
49    |                 ^^^^^^^
50
51 error: integer type suffix should be separated by an underscore
52   --> $DIR/literals.rs:22:17
53    |
54 LL |     let fail4 = 1234u32;
55    |                 ^^^^^^^
56
57 error: integer type suffix should be separated by an underscore
58   --> $DIR/literals.rs:23:17
59    |
60 LL |     let fail5 = 1234isize;
61    |                 ^^^^^^^^^
62
63 error: integer type suffix should be separated by an underscore
64   --> $DIR/literals.rs:24:17
65    |
66 LL |     let fail6 = 1234usize;
67    |                 ^^^^^^^^^
68
69 error: float type suffix should be separated by an underscore
70   --> $DIR/literals.rs:25:17
71    |
72 LL |     let fail7 = 1.5f32;
73    |                 ^^^^^^
74
75 error: this is a decimal constant
76   --> $DIR/literals.rs:29:17
77    |
78 LL |     let fail8 = 0123;
79    |                 ^^^^
80 help: if you mean to use a decimal constant, remove the `0` to remove confusion
81    |
82 LL |     let fail8 = 123;
83    |                 ^^^
84 help: if you mean to use an octal constant, use `0o`
85    |
86 LL |     let fail8 = 0o123;
87    |                 ^^^^^
88
89 error: digit groups should be smaller
90   --> $DIR/literals.rs:40:18
91    |
92 LL |     let fail13 = 0x1_23456_78901_usize;
93    |                  ^^^^^^^^^^^^^^^^^^^^^ help: consider: `0x0123_4567_8901_usize`
94    |
95    = note: `-D clippy::large-digit-groups` implied by `-D warnings`
96
97 error: digits grouped inconsistently by underscores
98   --> $DIR/literals.rs:42:18
99    |
100 LL |     let fail19 = 12_3456_21;
101    |                  ^^^^^^^^^^ help: consider: `12_345_621`
102    |
103    = note: `-D clippy::inconsistent-digit-grouping` implied by `-D warnings`
104
105 error: digits grouped inconsistently by underscores
106   --> $DIR/literals.rs:43:18
107    |
108 LL |     let fail22 = 3__4___23;
109    |                  ^^^^^^^^^ help: consider: `3_423`
110
111 error: digits grouped inconsistently by underscores
112   --> $DIR/literals.rs:44:18
113    |
114 LL |     let fail23 = 3__16___23;
115    |                  ^^^^^^^^^^ help: consider: `31_623`
116
117 error: aborting due to 15 previous errors
118