mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
27 lines
585 B
Rust
27 lines
585 B
Rust
// run-rustfix
|
|
#![warn(clippy::manual_instant_elapsed)]
|
|
#![allow(clippy::unnecessary_operation)]
|
|
#![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
|
|
}
|