blob: 02e0e096a907f6b483fcba7c9fcff12bb7b9694d [file] [log] [blame]
// Check that `write!` without a destination gives a helpful error message.
// See https://github.com/rust-lang/rust/issues/152493
fn main() {
write!("S");
//~^ ERROR requires a destination and format arguments
}