rust/tests/pass/hide_stdout.rs

7 lines
126 B
Rust
Raw Normal View History

2022-07-08 11:08:32 -05:00
//@compile-flags: -Zmiri-mute-stdout-stderr
fn main() {
println!("print to stdout");
eprintln!("print to stderr");
}