mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
18 lines
307 B
Rust
18 lines
307 B
Rust
// run-rustfix
|
|
|
|
#![warn(clippy::unused_format_specs)]
|
|
#![allow(unused)]
|
|
|
|
fn main() {
|
|
let f = 1.0f64;
|
|
println!("{:.}", 1.0);
|
|
println!("{f:.} {f:.?}");
|
|
|
|
println!("{:.}", 1);
|
|
}
|
|
|
|
fn should_not_lint() {
|
|
let f = 1.0f64;
|
|
println!("{:.1}", 1.0);
|
|
println!("{f:.w$} {f:.*?}", 3, w = 2);
|
|
}
|