summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/amputate-span.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/proc-macro/amputate-span.stderr')
-rw-r--r--src/test/ui/proc-macro/amputate-span.stderr25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/test/ui/proc-macro/amputate-span.stderr b/src/test/ui/proc-macro/amputate-span.stderr
new file mode 100644
index 000000000..9553ba3da
--- /dev/null
+++ b/src/test/ui/proc-macro/amputate-span.stderr
@@ -0,0 +1,25 @@
+error[E0433]: failed to resolve: use of undeclared type `Command`
+ --> $DIR/amputate-span.rs:49:5
+ |
+LL | Command::new("git");
+ | ^^^^^^^ not found in this scope
+ |
+help: consider importing this struct
+ |
+LL | use std::process::Command;
+ |
+
+error[E0433]: failed to resolve: use of undeclared type `Command`
+ --> $DIR/amputate-span.rs:63:9
+ |
+LL | Command::new("git");
+ | ^^^^^^^ not found in this scope
+ |
+help: consider importing this struct
+ |
+LL | use std::process::Command;
+ |
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0433`.