mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
4c80f210c3
This replaces and expands `almost_complete_letter_range`.
14 lines
267 B
Rust
14 lines
267 B
Rust
// run-rustfix
|
|
// edition:2018
|
|
|
|
#![warn(clippy::needless_parens_on_range_literals)]
|
|
#![allow(clippy::almost_complete_range)]
|
|
|
|
fn main() {
|
|
let _ = 'a'..='z';
|
|
let _ = 'a'..'z';
|
|
let _ = (1.)..2.;
|
|
let _ = (1.)..2.;
|
|
let _ = 'a'..;
|
|
let _ = ..'z';
|
|
}
|