summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/export-fully-qualified.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/resolve/export-fully-qualified.stderr')
-rw-r--r--tests/ui/resolve/export-fully-qualified.stderr7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/ui/resolve/export-fully-qualified.stderr b/tests/ui/resolve/export-fully-qualified.stderr
index 7ee352e12..0cd516ee1 100644
--- a/tests/ui/resolve/export-fully-qualified.stderr
+++ b/tests/ui/resolve/export-fully-qualified.stderr
@@ -1,8 +1,13 @@
error[E0433]: failed to resolve: use of undeclared crate or module `foo`
- --> $DIR/export-fully-qualified.rs:6:20
+ --> $DIR/export-fully-qualified.rs:8:20
|
LL | pub fn bar() { foo::baz(); }
| ^^^ use of undeclared crate or module `foo`
+ |
+help: consider importing this module
+ |
+LL + use foo;
+ |
error: aborting due to previous error