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, 0 insertions, 27 deletions
diff --git a/src/test/ui/imports/resolve_self_super_hint.rs b/src/test/ui/imports/resolve_self_super_hint.rs
deleted file mode 100644
index a14ec5b72..000000000
--- a/src/test/ui/imports/resolve_self_super_hint.rs
+++ /dev/null
@@ -1,27 +0,0 @@
-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() {}