blob: fedca38b158aa94c064458a07e10cc40552f90bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#![warn(clippy::manual_instant_elapsed)]
#![allow(clippy::unnecessary_operation)]
#![allow(clippy::unchecked_duration_subtraction)]
#![allow(unused_variables)]
#![allow(unused_must_use)]
use std::time::Instant;
fn main() {
let prev_instant = Instant::now();
{
// don't influence
let another_instant = Instant::now();
}
let duration = Instant::now() - prev_instant;
// don't catch
let duration = prev_instant.elapsed();
Instant::now() - duration;
let ref_to_instant = &Instant::now();
Instant::now() - *ref_to_instant; // to ensure parens are added correctly
}
|