rust/clippy_tests/examples/literals.stderr

82 lines
2.2 KiB
Plaintext
Raw Normal View History

error: inconsistent casing in hexadecimal literal
--> literals.rs:14:17
|
2017-02-08 13:58:07 +00:00
14 | let fail1 = 0xabCD;
| ^^^^^^
|
= note: `-D mixed-case-hex-literals` implied by `-D warnings`
error: inconsistent casing in hexadecimal literal
--> literals.rs:15:17
|
2017-02-08 13:58:07 +00:00
15 | let fail2 = 0xabCD_u32;
| ^^^^^^^^^^
|
= note: `-D mixed-case-hex-literals` implied by `-D warnings`
error: inconsistent casing in hexadecimal literal
--> literals.rs:16:17
|
2017-02-08 13:58:07 +00:00
16 | let fail2 = 0xabCD_isize;
| ^^^^^^^^^^^^
|
= note: `-D mixed-case-hex-literals` implied by `-D warnings`
error: integer type suffix should be separated by an underscore
--> literals.rs:21:17
|
2017-02-08 13:58:07 +00:00
21 | let fail3 = 1234i32;
| ^^^^^^^
|
= note: `-D unseparated-literal-suffix` implied by `-D warnings`
error: integer type suffix should be separated by an underscore
--> literals.rs:22:17
|
2017-02-08 13:58:07 +00:00
22 | let fail4 = 1234u32;
| ^^^^^^^
|
= note: `-D unseparated-literal-suffix` implied by `-D warnings`
error: integer type suffix should be separated by an underscore
--> literals.rs:23:17
|
2017-02-08 13:58:07 +00:00
23 | let fail5 = 1234isize;
| ^^^^^^^^^
|
= note: `-D unseparated-literal-suffix` implied by `-D warnings`
error: integer type suffix should be separated by an underscore
--> literals.rs:24:17
|
2017-02-08 13:58:07 +00:00
24 | let fail6 = 1234usize;
| ^^^^^^^^^
|
= note: `-D unseparated-literal-suffix` implied by `-D warnings`
error: float type suffix should be separated by an underscore
--> literals.rs:25:17
|
2017-02-08 13:58:07 +00:00
25 | let fail7 = 1.5f32;
| ^^^^^^
|
= note: `-D unseparated-literal-suffix` implied by `-D warnings`
error: this is a decimal constant
--> literals.rs:29:17
|
29 | let fail8 = 0123;
| ^^^^
|
= note: `-D zero-prefixed-literal` implied by `-D warnings`
help: if you mean to use a decimal constant, remove the `0` to remove confusion:
| let fail8 = 123;
help: if you mean to use an octal constant, use `0o`:
| let fail8 = 0o123;
error: aborting due to previous error(s)
error: Could not compile `clippy_tests`.
To learn more, run the command again with --verbose.