blob: 733545462ebc019a0ceb4ab154d4fe4f1f35f36f [file] [log] [blame] [edit]
//@compile-flags: -Zmiri-disable-isolation
fn getpid() -> u32 {
std::process::id()
}
fn main() {
getpid();
}