2017-02-07 20:05:30 +00:00
|
|
|
error: inconsistent casing in hexadecimal literal
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/literals.rs:13:17
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail1 = 0xabCD;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::mixed-case-hex-literals` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: inconsistent casing in hexadecimal literal
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/literals.rs:14:17
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail2 = 0xabCD_u32;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: inconsistent casing in hexadecimal literal
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/literals.rs:15:17
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail2 = 0xabCD_isize;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: integer type suffix should be separated by an underscore
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/literals.rs:16:27
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail_multi_zero = 000_123usize;
|
2017-07-19 23:56:32 +00:00
|
|
|
| ^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::unseparated-literal-suffix` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-06-12 18:41:00 +00:00
|
|
|
error: this is a decimal constant
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/literals.rs:16:27
|
2017-06-12 18:41:00 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail_multi_zero = 000_123usize;
|
2017-07-19 23:56:32 +00:00
|
|
|
| ^^^^^^^^^^^^
|
2017-06-12 18:41:00 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::zero-prefixed-literal` implied by `-D warnings`
|
2017-07-24 13:37:12 +00:00
|
|
|
help: if you mean to use a decimal constant, remove the `0` to remove confusion
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail_multi_zero = 123usize;
|
2017-08-01 00:20:27 +00:00
|
|
|
| ^^^^^^^^
|
2017-07-24 13:37:12 +00:00
|
|
|
help: if you mean to use an octal constant, use `0o`
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail_multi_zero = 0o123usize;
|
2017-08-01 00:20:27 +00:00
|
|
|
| ^^^^^^^^^^
|
2017-06-12 18:41:00 +00:00
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
error: integer type suffix should be separated by an underscore
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/literals.rs:21:17
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail3 = 1234i32;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: integer type suffix should be separated by an underscore
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/literals.rs:22:17
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail4 = 1234u32;
|
2017-06-12 18:41:00 +00:00
|
|
|
| ^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: integer type suffix should be separated by an underscore
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/literals.rs:23:17
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail5 = 1234isize;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2017-06-12 18:41:00 +00:00
|
|
|
error: integer type suffix should be separated by an underscore
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/literals.rs:24:17
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail6 = 1234usize;
|
2017-06-12 18:41:00 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
error: float type suffix should be separated by an underscore
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/literals.rs:25:17
|
2017-06-12 18:41:00 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail7 = 1.5f32;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: this is a decimal constant
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/literals.rs:29:17
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail8 = 0123;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
2017-07-24 13:37:12 +00:00
|
|
|
help: if you mean to use a decimal constant, remove the `0` to remove confusion
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail8 = 123;
|
2017-07-10 13:29:29 +00:00
|
|
|
| ^^^
|
2017-07-24 13:37:12 +00:00
|
|
|
help: if you mean to use an octal constant, use `0o`
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail8 = 0o123;
|
2017-07-10 13:29:29 +00:00
|
|
|
| ^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2018-05-28 12:43:44 +00:00
|
|
|
error: digit groups should be smaller
|
2019-03-15 06:50:31 +00:00
|
|
|
--> $DIR/literals.rs:40:18
|
2018-05-28 12:43:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail13 = 0x1_23456_78901_usize;
|
2018-05-28 12:43:44 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider: `0x0123_4567_8901_usize`
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::large-digit-groups` implied by `-D warnings`
|
2018-05-28 12:43:44 +00:00
|
|
|
|
2018-09-02 21:07:55 +00:00
|
|
|
error: digits grouped inconsistently by underscores
|
2019-03-15 07:06:01 +00:00
|
|
|
--> $DIR/literals.rs:42:18
|
2018-09-02 21:07:55 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail19 = 12_3456_21;
|
2018-09-02 21:07:55 +00:00
|
|
|
| ^^^^^^^^^^ help: consider: `12_345_621`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::inconsistent-digit-grouping` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: digits grouped inconsistently by underscores
|
2019-03-15 07:06:01 +00:00
|
|
|
--> $DIR/literals.rs:43:18
|
2018-09-02 21:07:55 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail22 = 3__4___23;
|
2018-09-02 21:07:55 +00:00
|
|
|
| ^^^^^^^^^ help: consider: `3_423`
|
|
|
|
|
|
|
|
error: digits grouped inconsistently by underscores
|
2019-03-15 07:06:01 +00:00
|
|
|
--> $DIR/literals.rs:44:18
|
2018-09-02 21:07:55 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail23 = 3__16___23;
|
2018-09-02 21:07:55 +00:00
|
|
|
| ^^^^^^^^^^ help: consider: `31_623`
|
|
|
|
|
2019-03-15 07:06:01 +00:00
|
|
|
error: aborting due to 15 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|