rust/tests/ui/resolve/tool-import.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
112 B
Rust
Raw Permalink Normal View History

2023-04-03 15:30:13 -05:00
//@ edition: 2018
use clippy::time::Instant;
//~^ `clippy` is a tool module
fn main() {
Instant::now();
}