mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
ff88787ff0
added ui test blessed stderrs fixed typo reblessed
18 lines
793 B
Rust
18 lines
793 B
Rust
// Check error for missing writer in writeln! and write! macro
|
|
fn main() {
|
|
let x = 1;
|
|
let y = 2;
|
|
write!("{}_{}", x, y);
|
|
//~^ ERROR format argument must be a string literal
|
|
//~| HELP you might be missing a string literal to format with
|
|
//~| ERROR cannot write into `&'static str`
|
|
//~| NOTE must implement `io::Write`, `fmt::Write`, or have a `write_fmt` method
|
|
//~| HELP a writer is needed before this format string
|
|
writeln!("{}_{}", x, y);
|
|
//~^ ERROR format argument must be a string literal
|
|
//~| HELP you might be missing a string literal to format with
|
|
//~| ERROR cannot write into `&'static str`
|
|
//~| NOTE must implement `io::Write`, `fmt::Write`, or have a `write_fmt` method
|
|
//~| HELP a writer is needed before this format string
|
|
}
|