mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-02 15:56:09 +03:00
8 lines
119 B
Rust
8 lines
119 B
Rust
// compile-flags: -Zmiri-disable-isolation
|
|
|
|
use std::time::SystemTime;
|
|
|
|
fn main() {
|
|
let _now = SystemTime::now();
|
|
}
|