mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 09:22:35 +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
|
|
}
|