rust/tests/ui/literals.stderr

88 lines
2.5 KiB
Plaintext
Raw Normal View History

error: inconsistent casing in hexadecimal literal
--> $DIR/literals.rs:14:17
|
2018-12-27 09:57:55 -06:00
LL | let fail1 = 0xabCD;
| ^^^^^^
|
= note: `-D clippy::mixed-case-hex-literals` implied by `-D warnings`
error: inconsistent casing in hexadecimal literal
--> $DIR/literals.rs:15:17
|
2018-12-27 09:57:55 -06:00
LL | let fail2 = 0xabCD_u32;
| ^^^^^^^^^^
error: inconsistent casing in hexadecimal literal
--> $DIR/literals.rs:16:17
|
2018-12-27 09:57:55 -06:00
LL | let fail2 = 0xabCD_isize;
| ^^^^^^^^^^^^
error: this is a decimal constant
--> $DIR/literals.rs:17:27
|
2018-12-27 09:57:55 -06:00
LL | let fail_multi_zero = 000_123usize;
2017-07-19 18:56:32 -05:00
| ^^^^^^^^^^^^
|
= note: `-D clippy::zero-prefixed-literal` implied by `-D warnings`
2019-08-26 04:11:43 -05:00
help: if you mean to use a decimal constant, remove the `0` to avoid confusion
2017-07-10 08:29:29 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let fail_multi_zero = 123usize;
2017-07-31 19:20:27 -05:00
| ^^^^^^^^
2017-07-24 08:37:12 -05:00
help: if you mean to use an octal constant, use `0o`
2017-07-10 08:29:29 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let fail_multi_zero = 0o123usize;
2017-07-31 19:20:27 -05:00
| ^^^^^^^^^^
error: this is a decimal constant
--> $DIR/literals.rs:21:17
|
2018-12-27 09:57:55 -06:00
LL | let fail8 = 0123;
| ^^^^
2019-10-26 14:53:42 -05:00
|
2019-08-26 04:11:43 -05:00
help: if you mean to use a decimal constant, remove the `0` to avoid confusion
2017-07-10 08:29:29 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let fail8 = 123;
2017-07-10 08:29:29 -05:00
| ^^^
2017-07-24 08:37:12 -05:00
help: if you mean to use an octal constant, use `0o`
2017-07-10 08:29:29 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let fail8 = 0o123;
2017-07-10 08:29:29 -05:00
| ^^^^^
2018-09-02 16:07:55 -05:00
error: digits grouped inconsistently by underscores
--> $DIR/literals.rs:33:18
2018-09-02 16:07:55 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let fail19 = 12_3456_21;
2018-09-02 16:07:55 -05:00
| ^^^^^^^^^^ help: consider: `12_345_621`
|
= note: `-D clippy::inconsistent-digit-grouping` implied by `-D warnings`
error: digits grouped inconsistently by underscores
--> $DIR/literals.rs:34:18
2018-09-02 16:07:55 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let fail22 = 3__4___23;
2018-09-02 16:07:55 -05:00
| ^^^^^^^^^ help: consider: `3_423`
error: digits grouped inconsistently by underscores
--> $DIR/literals.rs:35:18
2018-09-02 16:07:55 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let fail23 = 3__16___23;
2018-09-02 16:07:55 -05:00
| ^^^^^^^^^^ help: consider: `31_623`
error: digits of hex or binary literal not grouped by four
--> $DIR/literals.rs:37:18
|
LL | let fail24 = 0xAB_ABC_AB;
| ^^^^^^^^^^^ help: consider: `0x0ABA_BCAB`
|
= note: `-D clippy::unusual-byte-groupings` implied by `-D warnings`
error: digits of hex or binary literal not grouped by four
--> $DIR/literals.rs:38:18
|
LL | let fail25 = 0b01_100_101;
| ^^^^^^^^^^^^ help: consider: `0b0110_0101`
error: aborting due to 10 previous errors
2018-01-16 10:06:27 -06:00