mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 11:37:50 +00:00
25 lines
1.0 KiB
Plaintext
25 lines
1.0 KiB
Plaintext
// check-pass
|
|
// run-rustfix
|
|
|
|
fn main() {
|
|
println!("Hello {f:.1}!", f = 0.02f32);
|
|
//~^ WARNING named argument `f` is not used by name [named_arguments_used_positionally]
|
|
//~| HELP use the named argument by name to avoid ambiguity
|
|
|
|
println!("Hello {f:1.1}!", f = 0.02f32);
|
|
//~^ WARNING named argument `f` is not used by name [named_arguments_used_positionally]
|
|
//~| HELP use the named argument by name to avoid ambiguity
|
|
|
|
println!("Hello {f}!", f = 0.02f32);
|
|
//~^ WARNING named argument `f` is not used by name [named_arguments_used_positionally]
|
|
//~| HELP use the named argument by name to avoid ambiguity
|
|
|
|
println!("Hello {f}!", f = 0.02f32);
|
|
//~^ WARNING named argument `f` is not used by name [named_arguments_used_positionally]
|
|
//~| HELP use the named argument by name to avoid ambiguity
|
|
|
|
println!("Hello {f}!", f = 0.02f32);
|
|
//~^ WARNING named argument `f` is not used by name [named_arguments_used_positionally]
|
|
//~| HELP use the named argument by name to avoid ambiguity
|
|
}
|