]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/resolve_self_super_hint.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / resolve_self_super_hint.rs
index a89fd802baf0c11f936c9672da05c4be557ad6b3..a30e73cf02d12d00121afff6a39ef2f5c81e048a 100644 (file)
@@ -19,16 +19,18 @@ mod a {
     mod b {
         use alloc::HashMap;
         //~^ ERROR unresolved import `alloc` [E0432]
-        //~| Did you mean `a::alloc`?
+        //~| Did you mean `super::alloc`?
         mod c {
             use alloc::HashMap;
             //~^ ERROR unresolved import `alloc` [E0432]
-            //~| Did you mean `a::alloc`?
+            //~| Did you mean `std::alloc`?
             mod d {
                 use alloc::HashMap;
                 //~^ ERROR unresolved import `alloc` [E0432]
-                //~| Did you mean `a::alloc`?
+                //~| Did you mean `std::alloc`?
             }
         }
     }
 }
+
+fn main() {}