]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/amputate-span.stderr
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
[rust.git] / src / test / 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    |     ^^^^^^^ not found in this scope
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    |         ^^^^^^^ not found in this scope
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`.