rust/tests/ui/literals.stderr

183 lines
5.1 KiB
Text
Raw Normal View History

error: inconsistent casing in hexadecimal literal
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:24:17
|
2018-10-06 18:18:06 +02:00
24 | let fail1 = 0xabCD;
| ^^^^^^
|
= note: `-D clippy::mixed-case-hex-literals` implied by `-D warnings`
error: inconsistent casing in hexadecimal literal
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:25:17
|
2018-10-06 18:18:06 +02:00
25 | let fail2 = 0xabCD_u32;
| ^^^^^^^^^^
error: inconsistent casing in hexadecimal literal
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:26:17
|
2018-10-06 18:18:06 +02:00
26 | let fail2 = 0xabCD_isize;
| ^^^^^^^^^^^^
error: integer type suffix should be separated by an underscore
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:27:27
|
2018-10-06 18:18:06 +02:00
27 | let fail_multi_zero = 000_123usize;
2017-07-20 01:56:32 +02:00
| ^^^^^^^^^^^^
|
= note: `-D clippy::unseparated-literal-suffix` implied by `-D warnings`
error: this is a decimal constant
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:27:27
|
2018-10-06 18:18:06 +02:00
27 | let fail_multi_zero = 000_123usize;
2017-07-20 01:56:32 +02:00
| ^^^^^^^^^^^^
|
= note: `-D clippy::zero-prefixed-literal` implied by `-D warnings`
2017-07-24 15:37:12 +02:00
help: if you mean to use a decimal constant, remove the `0` to remove confusion
2017-07-10 15:29:29 +02:00
|
2018-10-06 18:18:06 +02:00
27 | let fail_multi_zero = 123usize;
2017-08-01 02:20:27 +02:00
| ^^^^^^^^
2017-07-24 15:37:12 +02:00
help: if you mean to use an octal constant, use `0o`
2017-07-10 15:29:29 +02:00
|
2018-10-06 18:18:06 +02:00
27 | let fail_multi_zero = 0o123usize;
2017-08-01 02:20:27 +02:00
| ^^^^^^^^^^
error: integer type suffix should be separated by an underscore
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:32:17
|
2018-10-06 18:18:06 +02:00
32 | let fail3 = 1234i32;
| ^^^^^^^
error: integer type suffix should be separated by an underscore
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:33:17
|
2018-10-06 18:18:06 +02:00
33 | let fail4 = 1234u32;
| ^^^^^^^
error: integer type suffix should be separated by an underscore
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:34:17
|
2018-10-06 18:18:06 +02:00
34 | let fail5 = 1234isize;
| ^^^^^^^^^
error: integer type suffix should be separated by an underscore
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:35:17
|
2018-10-06 18:18:06 +02:00
35 | let fail6 = 1234usize;
| ^^^^^^^^^
error: float type suffix should be separated by an underscore
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:36:17
|
2018-10-06 18:18:06 +02:00
36 | let fail7 = 1.5f32;
| ^^^^^^
error: this is a decimal constant
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:40:17
|
2018-10-06 18:18:06 +02:00
40 | let fail8 = 0123;
| ^^^^
2017-07-24 15:37:12 +02:00
help: if you mean to use a decimal constant, remove the `0` to remove confusion
2017-07-10 15:29:29 +02:00
|
2018-10-06 18:18:06 +02:00
40 | let fail8 = 123;
2017-07-10 15:29:29 +02:00
| ^^^
2017-07-24 15:37:12 +02:00
help: if you mean to use an octal constant, use `0o`
2017-07-10 15:29:29 +02:00
|
2018-10-06 18:18:06 +02:00
40 | let fail8 = 0o123;
2017-07-10 15:29:29 +02:00
| ^^^^^
error: long literal lacking separators
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:51:17
|
2018-10-06 18:18:06 +02:00
51 | let fail9 = 0xabcdef;
| ^^^^^^^^ help: consider: `0x00ab_cdef`
|
= note: `-D clippy::unreadable-literal` implied by `-D warnings`
error: long literal lacking separators
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:52:18
|
2018-10-06 18:18:06 +02:00
52 | let fail10 = 0xBAFEBAFE;
| ^^^^^^^^^^ help: consider: `0xBAFE_BAFE`
error: long literal lacking separators
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:53:18
|
2018-10-06 18:18:06 +02:00
53 | let fail11 = 0xabcdeff;
| ^^^^^^^^^ help: consider: `0x0abc_deff`
2018-05-28 14:43:44 +02:00
error: long literal lacking separators
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:54:18
2018-05-28 14:43:44 +02:00
|
2018-10-06 18:18:06 +02:00
54 | let fail12 = 0xabcabcabcabcabcabc;
2018-05-28 14:43:44 +02:00
| ^^^^^^^^^^^^^^^^^^^^ help: consider: `0x00ab_cabc_abca_bcab_cabc`
error: digit groups should be smaller
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:55:18
2018-05-28 14:43:44 +02:00
|
2018-10-06 18:18:06 +02:00
55 | let fail13 = 0x1_23456_78901_usize;
2018-05-28 14:43:44 +02:00
| ^^^^^^^^^^^^^^^^^^^^^ help: consider: `0x0123_4567_8901_usize`
|
= note: `-D clippy::large-digit-groups` implied by `-D warnings`
2018-05-28 14:43:44 +02:00
2018-09-02 23:07:55 +02:00
error: mistyped literal suffix
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:57:18
2018-09-02 23:07:55 +02:00
|
2018-10-06 18:18:06 +02:00
57 | let fail14 = 2_32;
2018-09-02 23:07:55 +02:00
| ^^^^ help: did you mean to write: `2_i32`
|
= note: #[deny(clippy::mistyped_literal_suffixes)] on by default
error: mistyped literal suffix
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:58:18
2018-09-02 23:07:55 +02:00
|
2018-10-06 18:18:06 +02:00
58 | let fail15 = 4_64;
2018-09-02 23:07:55 +02:00
| ^^^^ help: did you mean to write: `4_i64`
error: mistyped literal suffix
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:59:18
2018-09-02 23:07:55 +02:00
|
2018-10-06 18:18:06 +02:00
59 | let fail16 = 7_8;
2018-09-02 23:07:55 +02:00
| ^^^ help: did you mean to write: `7_i8`
error: mistyped literal suffix
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:60:18
2018-09-02 23:07:55 +02:00
|
2018-10-06 18:18:06 +02:00
60 | let fail17 = 23_16;
2018-09-02 23:07:55 +02:00
| ^^^^^ help: did you mean to write: `23_i16`
error: digits grouped inconsistently by underscores
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:62:18
2018-09-02 23:07:55 +02:00
|
2018-10-06 18:18:06 +02:00
62 | let fail19 = 12_3456_21;
2018-09-02 23:07:55 +02:00
| ^^^^^^^^^^ help: consider: `12_345_621`
|
= note: `-D clippy::inconsistent-digit-grouping` implied by `-D warnings`
error: mistyped literal suffix
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:63:18
2018-09-02 23:07:55 +02:00
|
2018-10-06 18:18:06 +02:00
63 | let fail20 = 2__8;
2018-09-02 23:07:55 +02:00
| ^^^^ help: did you mean to write: `2_i8`
error: mistyped literal suffix
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:64:18
2018-09-02 23:07:55 +02:00
|
2018-10-06 18:18:06 +02:00
64 | let fail21 = 4___16;
2018-09-02 23:07:55 +02:00
| ^^^^^^ help: did you mean to write: `4_i16`
error: digits grouped inconsistently by underscores
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:65:18
2018-09-02 23:07:55 +02:00
|
2018-10-06 18:18:06 +02:00
65 | let fail22 = 3__4___23;
2018-09-02 23:07:55 +02:00
| ^^^^^^^^^ help: consider: `3_423`
error: digits grouped inconsistently by underscores
2018-10-06 18:18:06 +02:00
--> $DIR/literals.rs:66:18
2018-09-02 23:07:55 +02:00
|
2018-10-06 18:18:06 +02:00
66 | let fail23 = 3__16___23;
2018-09-02 23:07:55 +02:00
| ^^^^^^^^^^ help: consider: `31_623`
error: aborting due to 25 previous errors
2018-01-16 17:06:27 +01:00