2021-11-04 12:52:36 +00:00
|
|
|
error: integer type suffix should not be separated by an underscore
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:13:15
|
2021-11-04 12:52:36 +00:00
|
|
|
|
|
|
|
|
LL | let ok4 = 0xab_cd_i32;
|
|
|
|
| ^^^^^^^^^^^ help: remove the underscore: `0xab_cdi32`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::separated-literal-suffix` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::separated_literal_suffix)]`
|
2021-11-04 12:52:36 +00:00
|
|
|
|
|
|
|
error: integer type suffix should not be separated by an underscore
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:16:15
|
2021-11-04 12:52:36 +00:00
|
|
|
|
|
|
|
|
LL | let ok5 = 0xAB_CD_u32;
|
|
|
|
| ^^^^^^^^^^^ help: remove the underscore: `0xAB_CDu32`
|
|
|
|
|
|
|
|
error: integer type suffix should not be separated by an underscore
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:18:15
|
2021-11-04 12:52:36 +00:00
|
|
|
|
|
|
|
|
LL | let ok5 = 0xAB_CD_isize;
|
|
|
|
| ^^^^^^^^^^^^^ help: remove the underscore: `0xAB_CDisize`
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
error: inconsistent casing in hexadecimal literal
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:20: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`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::mixed_case_hex_literals)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-11-04 12:52:36 +00:00
|
|
|
error: integer type suffix should not be separated by an underscore
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:23:17
|
2021-11-04 12:52:36 +00:00
|
|
|
|
|
|
|
|
LL | let fail2 = 0xabCD_u32;
|
|
|
|
| ^^^^^^^^^^ help: remove the underscore: `0xabCDu32`
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
error: inconsistent casing in hexadecimal literal
|
2023-08-24 19:32:12 +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 fail2 = 0xabCD_u32;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2021-11-04 12:52:36 +00:00
|
|
|
error: integer type suffix should not be separated by an underscore
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:26:17
|
2021-11-04 12:52:36 +00:00
|
|
|
|
|
|
|
|
LL | let fail2 = 0xabCD_isize;
|
|
|
|
| ^^^^^^^^^^^^ help: remove the underscore: `0xabCDisize`
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
error: inconsistent casing in hexadecimal literal
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:26: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
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
2021-11-04 12:52:36 +00:00
|
|
|
error: integer type suffix should be separated by an underscore
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:29:27
|
2021-11-04 12:52:36 +00:00
|
|
|
|
|
|
|
|
LL | let fail_multi_zero = 000_123usize;
|
|
|
|
| ^^^^^^^^^^^^ help: add an underscore: `000_123_usize`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::unseparated-literal-suffix` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::unseparated_literal_suffix)]`
|
2021-11-04 12:52:36 +00:00
|
|
|
|
2017-06-12 18:41:00 +00:00
|
|
|
error: this is a decimal constant
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:29: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`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::zero_prefixed_literal)]`
|
2019-08-26 09:11:43 +00:00
|
|
|
help: if you mean to use a decimal constant, remove the `0` to avoid confusion
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail_multi_zero = 123usize;
|
2021-08-11 14:21:33 +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;
|
2021-08-11 14:21:33 +00:00
|
|
|
| ~~~~~~~~~~
|
2017-06-12 18:41:00 +00:00
|
|
|
|
2021-11-04 12:52:36 +00:00
|
|
|
error: integer type suffix should not be separated by an underscore
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:36:16
|
2021-11-04 12:52:36 +00:00
|
|
|
|
|
|
|
|
LL | let ok10 = 0_i64;
|
|
|
|
| ^^^^^ help: remove the underscore: `0i64`
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
error: this is a decimal constant
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:38: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
|
|
|
| ^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-08-26 09:11:43 +00:00
|
|
|
help: if you mean to use a decimal constant, remove the `0` to avoid confusion
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let fail8 = 123;
|
2021-08-11 14:21:33 +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;
|
2021-08-11 14:21:33 +00:00
|
|
|
| ~~~~~
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-11-04 12:52:36 +00:00
|
|
|
error: integer type suffix should not be separated by an underscore
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:48:16
|
2021-11-04 12:52:36 +00:00
|
|
|
|
|
|
|
|
LL | let ok17 = 0x123_4567_8901_usize;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: remove the underscore: `0x123_4567_8901usize`
|
|
|
|
|
2018-09-02 21:07:55 +00:00
|
|
|
error: digits grouped inconsistently by underscores
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:52: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`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::inconsistent_digit_grouping)]`
|
2018-09-02 21:07:55 +00:00
|
|
|
|
|
|
|
error: digits grouped inconsistently by underscores
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:55: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
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:57: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`
|
|
|
|
|
2023-02-26 00:08:29 +00:00
|
|
|
error: digits of hex, binary or octal literal not in groups of equal size
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:60:18
|
2020-10-28 22:36:07 +00:00
|
|
|
|
|
|
|
|
LL | let fail24 = 0xAB_ABC_AB;
|
|
|
|
| ^^^^^^^^^^^ help: consider: `0x0ABA_BCAB`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::unusual-byte-groupings` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::unusual_byte_groupings)]`
|
2020-10-28 22:36:07 +00:00
|
|
|
|
2022-10-23 13:18:45 +00:00
|
|
|
error: this is a decimal constant
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:70:13
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
|
LL | let _ = 08;
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
help: if you mean to use a decimal constant, remove the `0` to avoid confusion
|
|
|
|
|
|
|
|
|
LL | let _ = 8;
|
|
|
|
| ~
|
|
|
|
|
|
|
|
error: this is a decimal constant
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:72:13
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
|
LL | let _ = 09;
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
help: if you mean to use a decimal constant, remove the `0` to avoid confusion
|
|
|
|
|
|
|
|
|
LL | let _ = 9;
|
|
|
|
| ~
|
|
|
|
|
|
|
|
error: this is a decimal constant
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/literals.rs:74:13
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
|
LL | let _ = 089;
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: if you mean to use a decimal constant, remove the `0` to avoid confusion
|
|
|
|
|
|
|
|
|
LL | let _ = 89;
|
|
|
|
| ~~
|
|
|
|
|
2023-02-26 00:08:29 +00:00
|
|
|
error: aborting due to 20 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|