rust/tests/pass/getpid.rs

10 lines
119 B
Rust
Raw Normal View History

2022-06-08 10:09:38 +02:00
// compile-flags: -Zmiri-disable-isolation
fn getpid() -> u32 {
std::process::id()
}
fn main() {
getpid();
}