mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
17 lines
343 B
Rust
17 lines
343 B
Rust
|
#![warn(clippy::unchecked_duration_subtraction)]
|
||
|
|
||
|
use std::time::{Duration, Instant};
|
||
|
|
||
|
fn main() {
|
||
|
let _first = Instant::now();
|
||
|
let second = Duration::from_secs(3);
|
||
|
|
||
|
let _ = _first - second;
|
||
|
|
||
|
let _ = Instant::now() - Duration::from_secs(5);
|
||
|
|
||
|
let _ = _first - Duration::from_secs(5);
|
||
|
|
||
|
let _ = Instant::now() - second;
|
||
|
}
|