about summary refs log tree commit diff
path: root/src/tools/miri/tests/pass/hide_stdout.rs
blob: cfd05a8396cb51869c8d607d67eff6bb980b03ae (plain)
1
2
3
4
5
6
//@compile-flags: -Zmiri-mute-stdout-stderr

fn main() {
    println!("print to stdout");
    eprintln!("print to stderr");
}