Deny useing tool paths

This commit is contained in:
clubby789 2023-04-03 21:30:13 +01:00
parent 1767585509
commit ebde2ab363
5 changed files with 37 additions and 11 deletions

View file

@ -0,0 +1,8 @@
// edition: 2018
use clippy::time::Instant;
//~^ `clippy` is a tool module
fn main() {
Instant::now();
}

View file

@ -0,0 +1,9 @@
error[E0433]: failed to resolve: `clippy` is a tool module, not a module
--> $DIR/tool-import.rs:3:5
|
LL | use clippy::time::Instant;
| ^^^^^^ `clippy` is a tool module, not a module
error: aborting due to previous error
For more information about this error, try `rustc --explain E0433`.