mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-13 00:17:13 +00:00
23 lines
438 B
Rust
23 lines
438 B
Rust
// run-rustfix
|
|
|
|
#![warn(clippy::unnecessary_cast)]
|
|
#![allow(clippy::no_effect, clippy::unnecessary_operation)]
|
|
|
|
fn main() {
|
|
// casting integer literal to float is unnecessary
|
|
100_f32;
|
|
100_f64;
|
|
100_f64;
|
|
// Should not trigger
|
|
#[rustfmt::skip]
|
|
let v = vec!(1);
|
|
&v as &[i32];
|
|
1.0 as f64;
|
|
1 as u64;
|
|
0x10 as f32;
|
|
0o10 as f32;
|
|
0b10 as f32;
|
|
0x11 as f64;
|
|
0o11 as f64;
|
|
0b11 as f64;
|
|
}
|