summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/tool-import.rs
blob: 971993332f540b2a6aa1e9c3b835b5be1409e39c (plain)
1
2
3
4
5
6
7
8
// edition: 2018

use clippy::time::Instant;
//~^ `clippy` is a tool module

fn main() {
    Instant::now();
}