]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/amputate-span.stderr
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / proc-macro / amputate-span.stderr
1 error[E0433]: failed to resolve: use of undeclared type `Command`
2   --> $DIR/amputate-span.rs:49:5
3    |
4 LL |     Command::new("git");
5    |     ^^^^^^^ use of undeclared type `Command`
6    |
7 help: consider importing this struct
8    |
9 LL | use std::process::Command;
10    |
11
12 error[E0433]: failed to resolve: use of undeclared type `Command`
13   --> $DIR/amputate-span.rs:63:9
14    |
15 LL |         Command::new("git");
16    |         ^^^^^^^ use of undeclared type `Command`
17    |
18 help: consider importing this struct
19    |
20 LL |     use std::process::Command;
21    |
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0433`.