]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/hygiene/fields.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / hygiene / fields.rs
index 597019cb1ee2d96844fa56eadc8189cf739c3921..7a417b46fcc973e88e574e21f8f6d8ebd3354500 100644 (file)
@@ -15,8 +15,8 @@ mod foo {
         let s = S { x: 0 }; //~ ERROR type `foo::S` is private
         let _ = s.x; //~ ERROR type `foo::S` is private
 
-        let t = T(0); //~ ERROR type `foo::T` is private
-        let _ = t.0; //~ ERROR type `foo::T` is private
+        let t = T(0); //~ ERROR type `T` is private
+        let _ = t.0; //~ ERROR type `T` is private
 
         let s = $S { $x: 0, x: 1 };
         assert_eq!((s.$x, s.x), (0, 1));