summaryrefslogtreecommitdiffstats
path: root/src/test/ui/imports/resolve_self_super_hint.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/imports/resolve_self_super_hint.rs')
-rw-r--r--src/test/ui/imports/resolve_self_super_hint.rs27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/test/ui/imports/resolve_self_super_hint.rs b/src/test/ui/imports/resolve_self_super_hint.rs
new file mode 100644
index 000000000..a14ec5b72
--- /dev/null
+++ b/src/test/ui/imports/resolve_self_super_hint.rs
@@ -0,0 +1,27 @@
+mod a {
+ extern crate alloc;
+ use alloc::HashMap;
+ //~^ ERROR unresolved import `alloc` [E0432]
+ //~| HELP a similar path exists
+ //~| SUGGESTION self::alloc
+ mod b {
+ use alloc::HashMap;
+ //~^ ERROR unresolved import `alloc` [E0432]
+ //~| HELP a similar path exists
+ //~| SUGGESTION super::alloc
+ mod c {
+ use alloc::HashMap;
+ //~^ ERROR unresolved import `alloc` [E0432]
+ //~| HELP a similar path exists
+ //~| SUGGESTION a::alloc
+ mod d {
+ use alloc::HashMap;
+ //~^ ERROR unresolved import `alloc` [E0432]
+ //~| HELP a similar path exists
+ //~| SUGGESTION a::alloc
+ }
+ }
+ }
+}
+
+fn main() {}