mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
16 lines
423 B
Rust
16 lines
423 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.checked_sub(second).unwrap();
|
|
|
|
let _ = Instant::now().checked_sub(Duration::from_secs(5)).unwrap();
|
|
|
|
let _ = _first.checked_sub(Duration::from_secs(5)).unwrap();
|
|
|
|
let _ = Instant::now().checked_sub(second).unwrap();
|
|
}
|