about summary refs log tree commit diff
path: root/tests/ui/resolve/tool-import.rs
blob: 951505b92a0bfa01feb2a8bec1316301bdc60b43 (plain)
1
2
3
4
5
6
7
8
//@ edition: 2018

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

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