]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/error-codes/E0451.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / error-codes / E0451.stderr
index 655f3a98d7f09e241ca150f4554e09ae4b99627d..bb92c23e0f600b613f77d39fb6453eaa8d29f182 100644 (file)
@@ -2,13 +2,13 @@ error[E0451]: field `b` of struct `bar::Foo` is private
   --> $DIR/E0451.rs:14:21
    |
 LL |     let bar::Foo{a, b} = foo;
-   |                     ^ field `b` is private
+   |                     ^ private field
 
 error[E0451]: field `b` of struct `bar::Foo` is private
   --> $DIR/E0451.rs:18:29
    |
 LL |     let f = bar::Foo{ a: 0, b: 0 };
-   |                             ^^^^ field `b` is private
+   |                             ^^^^ private field
 
 error: aborting due to 2 previous errors