mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-28 11:17:26 +03:00
9 lines
118 B
Rust
9 lines
118 B
Rust
//@ edition: 2018
|
|
|
|
use clippy::time::Instant;
|
|
//~^ ERROR `clippy` is a tool module
|
|
|
|
fn main() {
|
|
Instant::now();
|
|
}
|