Remove large-digit-groups test from literals.rs

This commit is contained in:
Manish Goregaokar 2019-09-25 04:46:43 -07:00
parent 4368771548
commit 329e224eba
2 changed files with 11 additions and 20 deletions

View File

@ -1,4 +1,5 @@
#![warn(clippy::large_digit_groups)]
// tests no rustfixable lints
#![warn(clippy::mixed_case_hex_literals)]
#![warn(clippy::zero_prefixed_literal)]
#![allow(clippy::unseparated_literal_suffix)]
@ -28,8 +29,6 @@ fn main() {
let ok16 = 0xFE_BAFE_ABAB_ABCD;
let ok17 = 0x123_4567_8901_usize;
let fail13 = 0x1_23456_78901_usize;
let fail19 = 12_3456_21;
let fail22 = 3__4___23;
let fail23 = 3__16___23;

View File

@ -1,5 +1,5 @@
error: inconsistent casing in hexadecimal literal
--> $DIR/literals.rs:13:17
--> $DIR/literals.rs:14:17
|
LL | let fail1 = 0xabCD;
| ^^^^^^
@ -7,19 +7,19 @@ LL | let fail1 = 0xabCD;
= note: `-D clippy::mixed-case-hex-literals` implied by `-D warnings`
error: inconsistent casing in hexadecimal literal
--> $DIR/literals.rs:14:17
--> $DIR/literals.rs:15:17
|
LL | let fail2 = 0xabCD_u32;
| ^^^^^^^^^^
error: inconsistent casing in hexadecimal literal
--> $DIR/literals.rs:15:17
--> $DIR/literals.rs:16:17
|
LL | let fail2 = 0xabCD_isize;
| ^^^^^^^^^^^^
error: this is a decimal constant
--> $DIR/literals.rs:16:27
--> $DIR/literals.rs:17:27
|
LL | let fail_multi_zero = 000_123usize;
| ^^^^^^^^^^^^
@ -35,7 +35,7 @@ LL | let fail_multi_zero = 0o123usize;
| ^^^^^^^^^^
error: this is a decimal constant
--> $DIR/literals.rs:20:17
--> $DIR/literals.rs:21:17
|
LL | let fail8 = 0123;
| ^^^^
@ -48,16 +48,8 @@ help: if you mean to use an octal constant, use `0o`
LL | let fail8 = 0o123;
| ^^^^^
error: digit groups should be smaller
--> $DIR/literals.rs:31:18
|
LL | let fail13 = 0x1_23456_78901_usize;
| ^^^^^^^^^^^^^^^^^^^^^ help: consider: `0x0123_4567_8901_usize`
|
= note: `-D clippy::large-digit-groups` implied by `-D warnings`
error: digits grouped inconsistently by underscores
--> $DIR/literals.rs:33:18
--> $DIR/literals.rs:32:18
|
LL | let fail19 = 12_3456_21;
| ^^^^^^^^^^ help: consider: `12_345_621`
@ -65,16 +57,16 @@ LL | let fail19 = 12_3456_21;
= note: `-D clippy::inconsistent-digit-grouping` implied by `-D warnings`
error: digits grouped inconsistently by underscores
--> $DIR/literals.rs:34:18
--> $DIR/literals.rs:33:18
|
LL | let fail22 = 3__4___23;
| ^^^^^^^^^ help: consider: `3_423`
error: digits grouped inconsistently by underscores
--> $DIR/literals.rs:35:18
--> $DIR/literals.rs:34:18
|
LL | let fail23 = 3__16___23;
| ^^^^^^^^^^ help: consider: `31_623`
error: aborting due to 9 previous errors
error: aborting due to 8 previous errors