blob: 8c9887656d384366073c35d0941f4dfa7d9f2afb [file]
//@compile-flags: -Zmiri-disable-isolation
//@only-target: linux android illumos
//@ignore-host: windows
fn main() {
let _ = match std::fs::File::open("/proc/doesnotexist ") {
Ok(_f) => {}
Err(_msg) => {}
};
();
}