]> git.lizzy.rs Git - rust.git/blob - tests/run-pass/clock.rs
Use places instead of ptrs to write packed immtys
[rust.git] / tests / run-pass / clock.rs
1 // ignore-windows: TODO clock shims are not implemented on Windows
2 // compile-flags: -Zmiri-disable-isolation
3
4 use std::time::SystemTime;
5
6 fn main() {
7    let _now = SystemTime::now();
8 }