15 lines
259 B
Rust
15 lines
259 B
Rust
// run-rustfix
|
|
|
|
#![feature(range_is_empty)]
|
|
#![warn(clippy::len_zero)]
|
|
#![allow(unused)]
|
|
|
|
mod issue_3807 {
|
|
// With the feature enabled, `is_empty` should be suggested
|
|
fn suggestion_is_fine() {
|
|
let _ = (0..42).is_empty();
|
|
}
|
|
}
|
|
|
|
fn main() {}
|