mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
16 lines
343 B
Rust
16 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;
|
|
}
|