rust/tests/pass/hide_stdout.rs

7 lines
126 B
Rust
Raw Normal View History

// compile-flags: -Zmiri-mute-stdout-stderr
fn main() {
println!("print to stdout");
eprintln!("print to stderr");
}