summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/builtin-prelude-no-accidents.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/macros/builtin-prelude-no-accidents.stderr')
-rw-r--r--tests/ui/macros/builtin-prelude-no-accidents.stderr4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/ui/macros/builtin-prelude-no-accidents.stderr b/tests/ui/macros/builtin-prelude-no-accidents.stderr
index b726e1862..c1054230b 100644
--- a/tests/ui/macros/builtin-prelude-no-accidents.stderr
+++ b/tests/ui/macros/builtin-prelude-no-accidents.stderr
@@ -26,10 +26,6 @@ error[E0433]: failed to resolve: use of undeclared crate or module `vec`
LL | type B = vec::Vec<u8>;
| ^^^ use of undeclared crate or module `vec`
|
-help: a struct with a similar name exists
- |
-LL | type B = Vec::Vec<u8>;
- | ~~~
help: consider importing this module
|
LL + use std::vec;