summaryrefslogtreecommitdiffstats
path: root/src/test/ui/imports/glob-shadowing.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/imports/glob-shadowing.stderr')
-rw-r--r--src/test/ui/imports/glob-shadowing.stderr54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/test/ui/imports/glob-shadowing.stderr b/src/test/ui/imports/glob-shadowing.stderr
new file mode 100644
index 000000000..aff2eff68
--- /dev/null
+++ b/src/test/ui/imports/glob-shadowing.stderr
@@ -0,0 +1,54 @@
+error[E0659]: `env` is ambiguous
+ --> $DIR/glob-shadowing.rs:11:17
+ |
+LL | let x = env!("PATH");
+ | ^^^ ambiguous name
+ |
+ = note: ambiguous because of a conflict between a name from a glob import and an outer scope during import or macro resolution
+ = note: `env` could refer to a macro from prelude
+note: `env` could also refer to the macro imported here
+ --> $DIR/glob-shadowing.rs:9:9
+ |
+LL | use m::*;
+ | ^^^^
+ = help: consider adding an explicit import of `env` to disambiguate
+ = help: or use `self::env` to refer to this macro unambiguously
+
+error[E0659]: `env` is ambiguous
+ --> $DIR/glob-shadowing.rs:19:21
+ |
+LL | let x = env!("PATH");
+ | ^^^ ambiguous name
+ |
+ = note: ambiguous because of a conflict between a name from a glob import and an outer scope during import or macro resolution
+ = note: `env` could refer to a macro from prelude
+note: `env` could also refer to the macro imported here
+ --> $DIR/glob-shadowing.rs:17:13
+ |
+LL | use m::*;
+ | ^^^^
+ = help: consider adding an explicit import of `env` to disambiguate
+
+error[E0659]: `fenv` is ambiguous
+ --> $DIR/glob-shadowing.rs:29:21
+ |
+LL | let x = fenv!();
+ | ^^^^ ambiguous name
+ |
+ = note: ambiguous because of a conflict between a name from a glob import and an outer scope during import or macro resolution
+note: `fenv` could refer to the macro imported here
+ --> $DIR/glob-shadowing.rs:27:13
+ |
+LL | use m::*;
+ | ^^^^
+ = help: consider adding an explicit import of `fenv` to disambiguate
+note: `fenv` could also refer to the macro defined here
+ --> $DIR/glob-shadowing.rs:25:5
+ |
+LL | pub macro fenv($e: expr) { $e }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ = help: use `self::fenv` to refer to this macro unambiguously
+
+error: aborting due to 3 previous errors
+
+For more information about this error, try `rustc --explain E0659`.