]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/resolve/privacy-struct-ctor.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / resolve / privacy-struct-ctor.stderr
index a72f69cf1cd8d48a713069f3141e4d0602b684e3..e5d6f7e9e24f0627091909bfa437fd67acf17a42 100644 (file)
@@ -103,7 +103,7 @@ error[E0603]: tuple struct constructor `S` is private
    |
 LL |     xcrate::m::S;
    |                ^ private tuple struct constructor
-   | 
+   |
   ::: $DIR/auxiliary/privacy-struct-ctor.rs:2:18
    |
 LL |     pub struct S(u8);
@@ -120,7 +120,7 @@ error[E0603]: tuple struct constructor `Z` is private
    |
 LL |     xcrate::m::n::Z;
    |                   ^ private tuple struct constructor
-   | 
+   |
   ::: $DIR/auxiliary/privacy-struct-ctor.rs:5:28
    |
 LL |         pub(in m) struct Z(pub(in m::n) u8);