rust/tests/pass/hide_stdout.rs

7 lines
126 B
Rust
Raw Normal View History

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