mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
18 lines
461 B
Rust
18 lines
461 B
Rust
#![warn(clippy::ifs_same_cond)]
|
|
#![allow(clippy::if_same_then_else, clippy::comparison_chain, clippy::needless_else)]
|
|
|
|
fn main() {}
|
|
|
|
fn issue10272() {
|
|
use std::cell::Cell;
|
|
|
|
// Because the `ignore-interior-mutability` configuration
|
|
// is set to ignore for `std::cell::Cell`, the following `get()` calls
|
|
// should trigger warning
|
|
let x = Cell::new(true);
|
|
if x.get() {
|
|
} else if !x.take() {
|
|
} else if x.get() {
|
|
} else {
|
|
}
|
|
}
|