Sign in
rust
/
rust
/
d7e8f9fc7af4aa4cd65140afaebe48dd1e90e708
/
.
/
src
/
tools
/
miri
/
tests
/
pass
/
open_a_file_in_proc.rs
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
)
=>
{}
};
();
}