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
111 B
Rust
Raw Normal View History

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