summaryrefslogtreecommitdiffstats
path: root/src/test/ui/hygiene/globs.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/hygiene/globs.stderr')
-rw-r--r--src/test/ui/hygiene/globs.stderr59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/test/ui/hygiene/globs.stderr b/src/test/ui/hygiene/globs.stderr
new file mode 100644
index 000000000..bcfcc28ad
--- /dev/null
+++ b/src/test/ui/hygiene/globs.stderr
@@ -0,0 +1,59 @@
+error[E0425]: cannot find function `f` in this scope
+ --> $DIR/globs.rs:22:9
+ |
+LL | f();
+ | ^ not found in this scope
+ |
+help: consider importing this function
+ |
+LL | use foo::f;
+ |
+
+error[E0425]: cannot find function `g` in this scope
+ --> $DIR/globs.rs:15:5
+ |
+LL | g();
+ | ^ not found in this scope
+...
+LL | / m! {
+LL | | use bar::*;
+LL | | g();
+LL | | f();
+LL | | }
+ | |_____- in this macro invocation
+ |
+ = note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
+help: consider importing this function
+ |
+LL | use bar::g;
+ |
+
+error[E0425]: cannot find function `f` in this scope
+ --> $DIR/globs.rs:61:12
+ |
+LL | n!(f);
+ | ----- in this macro invocation
+...
+LL | n!(f);
+ | ^ not found in this scope
+ |
+ = note: consider importing this function:
+ foo::f
+ = note: this error originates in the macro `n` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error[E0425]: cannot find function `f` in this scope
+ --> $DIR/globs.rs:65:17
+ |
+LL | n!(f);
+ | ----- in this macro invocation
+...
+LL | f
+ | ^ not found in this scope
+ |
+ = note: consider importing this function:
+ foo::f
+ = note: this error originates in the macro `n` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error: aborting due to 4 previous errors
+
+For more information about this error, try `rustc --explain E0425`.