rust/tests/ui/unreadable_literal.stderr

73 lines
2.5 KiB
Text
Raw Normal View History

error: digits of hex or binary literal not grouped by four
--> $DIR/unreadable_literal.rs:25:9
|
LL | 0x1_234_567,
| ^^^^^^^^^^^ help: consider: `0x0123_4567`
|
2020-10-25 16:31:24 +01:00
= note: `-D clippy::unusual-byte-groupings` implied by `-D warnings`
2017-07-20 01:56:32 +02:00
error: long literal lacking separators
--> $DIR/unreadable_literal.rs:33:17
2018-10-06 18:18:06 +02:00
|
LL | let _bad = (0b110110_i64, 0xcafebabe_usize, 123456_f32, 1.234567_f32);
| ^^^^^^^^^^^^ help: consider: `0b11_0110_i64`
2018-10-06 18:18:06 +02:00
|
= note: `-D clippy::unreadable-literal` implied by `-D warnings`
2017-07-20 01:56:32 +02:00
error: long literal lacking separators
--> $DIR/unreadable_literal.rs:33:31
2018-10-06 18:18:06 +02:00
|
LL | let _bad = (0b110110_i64, 0xcafebabe_usize, 123456_f32, 1.234567_f32);
| ^^^^^^^^^^^^^^^^ help: consider: `0xcafe_babe_usize`
2017-07-20 01:56:32 +02:00
error: long literal lacking separators
--> $DIR/unreadable_literal.rs:33:49
2018-10-06 18:18:06 +02:00
|
LL | let _bad = (0b110110_i64, 0xcafebabe_usize, 123456_f32, 1.234567_f32);
| ^^^^^^^^^^ help: consider: `123_456_f32`
2017-07-20 01:56:32 +02:00
error: long literal lacking separators
--> $DIR/unreadable_literal.rs:33:61
2018-10-06 18:18:06 +02:00
|
LL | let _bad = (0b110110_i64, 0xcafebabe_usize, 123456_f32, 1.234567_f32);
| ^^^^^^^^^^^^ help: consider: `1.234_567_f32`
2017-07-20 01:56:32 +02:00
error: long literal lacking separators
--> $DIR/unreadable_literal.rs:35:20
2018-10-06 18:18:06 +02:00
|
LL | let _bad_sci = 1.123456e1;
| ^^^^^^^^^^ help: consider: `1.123_456e1`
error: long literal lacking separators
--> $DIR/unreadable_literal.rs:37:18
|
LL | let _fail1 = 0xabcdef;
| ^^^^^^^^ help: consider: `0x00ab_cdef`
error: long literal lacking separators
--> $DIR/unreadable_literal.rs:38:23
|
LL | let _fail2: u32 = 0xBAFEBAFE;
| ^^^^^^^^^^ help: consider: `0xBAFE_BAFE`
error: long literal lacking separators
--> $DIR/unreadable_literal.rs:39:18
|
LL | let _fail3 = 0xabcdeff;
| ^^^^^^^^^ help: consider: `0x0abc_deff`
error: long literal lacking separators
--> $DIR/unreadable_literal.rs:40:24
|
LL | let _fail4: i128 = 0xabcabcabcabcabcabc;
| ^^^^^^^^^^^^^^^^^^^^ help: consider: `0x00ab_cabc_abca_bcab_cabc`
error: long literal lacking separators
--> $DIR/unreadable_literal.rs:41:18
|
LL | let _fail5 = 1.100300400;
| ^^^^^^^^^^^ help: consider: `1.100_300_400`
error: aborting due to 11 previous errors
2018-01-16 17:06:27 +01:00