mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
11 lines
227 B
Rust
11 lines
227 B
Rust
// check-pass
|
|
// compile-flags: -Wunused
|
|
|
|
// make sure write!() can't hide its unused Result
|
|
|
|
fn main() {
|
|
use std::fmt::Write;
|
|
let mut example = String::new();
|
|
write!(&mut example, "{}", 42); //~WARN must be used
|
|
}
|