rust-clippy/tests/ui/manual_is_ascii_check.fixed

51 lines
1.2 KiB
Rust
Raw Normal View History

// run-rustfix
#![allow(unused, dead_code)]
#![warn(clippy::manual_is_ascii_check)]
fn main() {
assert!('x'.is_ascii_lowercase());
assert!('X'.is_ascii_uppercase());
assert!(b'x'.is_ascii_lowercase());
assert!(b'X'.is_ascii_uppercase());
let num = '2';
assert!(num.is_ascii_digit());
assert!(b'1'.is_ascii_digit());
assert!('x'.is_ascii_alphabetic());
assert!(matches!('x', 'A'..='Z' | 'a'..='z' | '_'));
2022-12-12 10:58:02 +00:00
2022-12-13 02:50:49 +00:00
assert!(b'0'.is_ascii_digit());
assert!(b'a'.is_ascii_lowercase());
assert!(b'A'.is_ascii_uppercase());
2022-12-12 10:58:02 +00:00
2022-12-13 02:50:49 +00:00
assert!('0'.is_ascii_digit());
assert!('a'.is_ascii_lowercase());
assert!('A'.is_ascii_uppercase());
}
#[clippy::msrv = "1.23"]
fn msrv_1_23() {
assert!(matches!(b'1', b'0'..=b'9'));
assert!(matches!('X', 'A'..='Z'));
assert!(matches!('x', 'A'..='Z' | 'a'..='z'));
}
#[clippy::msrv = "1.24"]
fn msrv_1_24() {
assert!(b'1'.is_ascii_digit());
assert!('X'.is_ascii_uppercase());
assert!('x'.is_ascii_alphabetic());
}
#[clippy::msrv = "1.46"]
fn msrv_1_46() {
const FOO: bool = matches!('x', '0'..='9');
}
#[clippy::msrv = "1.47"]
fn msrv_1_47() {
const FOO: bool = 'x'.is_ascii_digit();
}