summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rust-2018/issue-54006.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/rust-2018/issue-54006.stderr')
-rw-r--r--src/test/ui/rust-2018/issue-54006.stderr17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/ui/rust-2018/issue-54006.stderr b/src/test/ui/rust-2018/issue-54006.stderr
new file mode 100644
index 000000000..1978138a6
--- /dev/null
+++ b/src/test/ui/rust-2018/issue-54006.stderr
@@ -0,0 +1,17 @@
+error[E0432]: unresolved import `alloc`
+ --> $DIR/issue-54006.rs:6:5
+ |
+LL | use alloc::vec;
+ | ^^^^^ help: a similar path exists: `core::alloc`
+
+error: cannot determine resolution for the macro `vec`
+ --> $DIR/issue-54006.rs:10:18
+ |
+LL | let mut xs = vec![];
+ | ^^^
+ |
+ = note: import resolution is stuck, try simplifying macro imports
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0432`.