]> git.proxmox.com Git - rustc.git/blob - src/test/ui/proc-macro/amputate-span.stderr
New upstream version 1.61.0+dfsg1
[rustc.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`.