mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
235 lines
6.4 KiB
Text
235 lines
6.4 KiB
Text
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:42:17
|
|
|
|
|
LL | let _ = ('a') ..'z';
|
|
| ^^^^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
|
= note: `-D clippy::almost-complete-range` implied by `-D warnings`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:43:17
|
|
|
|
|
LL | let _ = 'A' .. ('Z');
|
|
| ^^^^--^^^^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:44:17
|
|
|
|
|
LL | let _ = ((('0'))) .. ('9');
|
|
| ^^^^^^^^^^--^^^^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:51:13
|
|
|
|
|
LL | let _ = (b'a')..(b'z');
|
|
| ^^^^^^--^^^^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:52:13
|
|
|
|
|
LL | let _ = b'A'..b'Z';
|
|
| ^^^^--^^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:53:13
|
|
|
|
|
LL | let _ = b'0'..b'9';
|
|
| ^^^^--^^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:59:13
|
|
|
|
|
LL | let _ = a!()..'z';
|
|
| ^^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:60:13
|
|
|
|
|
LL | let _ = A!()..'Z';
|
|
| ^^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:61:13
|
|
|
|
|
LL | let _ = zero!()..'9';
|
|
| ^^^^^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:64:9
|
|
|
|
|
LL | b'a'..b'z' if true => 1,
|
|
| ^^^^--^^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:65:9
|
|
|
|
|
LL | b'A'..b'Z' if true => 2,
|
|
| ^^^^--^^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:66:9
|
|
|
|
|
LL | b'0'..b'9' if true => 3,
|
|
| ^^^^--^^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:74:9
|
|
|
|
|
LL | 'a'..'z' if true => 1,
|
|
| ^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:75:9
|
|
|
|
|
LL | 'A'..'Z' if true => 2,
|
|
| ^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:76:9
|
|
|
|
|
LL | '0'..'9' if true => 3,
|
|
| ^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:33:17
|
|
|
|
|
LL | let _ = 'a'..'z';
|
|
| ^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
...
|
|
LL | b!();
|
|
| ---- in this macro invocation
|
|
|
|
|
= note: this error originates in the macro `b` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:34:17
|
|
|
|
|
LL | let _ = 'A'..'Z';
|
|
| ^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
...
|
|
LL | b!();
|
|
| ---- in this macro invocation
|
|
|
|
|
= note: this error originates in the macro `b` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:35:17
|
|
|
|
|
LL | let _ = '0'..'9';
|
|
| ^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
...
|
|
LL | b!();
|
|
| ---- in this macro invocation
|
|
|
|
|
= note: this error originates in the macro `b` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:90:9
|
|
|
|
|
LL | 'a'..'z' => 1,
|
|
| ^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `...`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:91:9
|
|
|
|
|
LL | 'A'..'Z' => 2,
|
|
| ^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `...`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:92:9
|
|
|
|
|
LL | '0'..'9' => 3,
|
|
| ^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `...`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:99:13
|
|
|
|
|
LL | let _ = 'a'..'z';
|
|
| ^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:100:13
|
|
|
|
|
LL | let _ = 'A'..'Z';
|
|
| ^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:101:13
|
|
|
|
|
LL | let _ = '0'..'9';
|
|
| ^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:103:9
|
|
|
|
|
LL | 'a'..'z' => 1,
|
|
| ^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:104:9
|
|
|
|
|
LL | 'A'..'Z' => 1,
|
|
| ^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: almost complete ascii range
|
|
--> $DIR/almost_complete_range.rs:105:9
|
|
|
|
|
LL | '0'..'9' => 3,
|
|
| ^^^--^^^
|
|
| |
|
|
| help: use an inclusive range: `..=`
|
|
|
|
error: aborting due to 27 previous errors
|
|
|