mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
51 lines
1.5 KiB
Rust
51 lines
1.5 KiB
Rust
//@no-rustfix: overlapping suggestions
|
|
#![allow(unused_must_use)]
|
|
#![warn(clippy::write_literal)]
|
|
|
|
use std::io::Write;
|
|
|
|
fn main() {
|
|
let mut v = Vec::new();
|
|
|
|
writeln!(v, "{}", "{hello}");
|
|
//~^ ERROR: literal with an empty format string
|
|
//~| NOTE: `-D clippy::write-literal` implied by `-D warnings`
|
|
writeln!(v, r"{}", r"{hello}");
|
|
//~^ ERROR: literal with an empty format string
|
|
writeln!(v, "{}", '\'');
|
|
//~^ ERROR: literal with an empty format string
|
|
writeln!(v, "{}", '"');
|
|
//~^ ERROR: literal with an empty format string
|
|
writeln!(v, r"{}", '"');
|
|
//~^ ERROR: literal with an empty format string
|
|
writeln!(v, r"{}", '\'');
|
|
//~^ ERROR: literal with an empty format string
|
|
writeln!(
|
|
v,
|
|
"some {}",
|
|
"hello \
|
|
world!",
|
|
//~^^ ERROR: literal with an empty format string
|
|
);
|
|
writeln!(
|
|
v,
|
|
"some {}\
|
|
{} \\ {}",
|
|
"1", "2", "3",
|
|
);
|
|
writeln!(v, "{}", "\\");
|
|
//~^ ERROR: literal with an empty format string
|
|
writeln!(v, r"{}", "\\");
|
|
//~^ ERROR: literal with an empty format string
|
|
writeln!(v, r#"{}"#, "\\");
|
|
//~^ ERROR: literal with an empty format string
|
|
writeln!(v, "{}", r"\");
|
|
//~^ ERROR: literal with an empty format string
|
|
writeln!(v, "{}", "\r");
|
|
//~^ ERROR: literal with an empty format string
|
|
// hard mode
|
|
writeln!(v, r#"{}{}"#, '#', '"');
|
|
//~^ ERROR: literal with an empty format string
|
|
// should not lint
|
|
writeln!(v, r"{}", "\r");
|
|
}
|