]> git.lizzy.rs Git - rust.git/blob - src/test/ui/functional-struct-update/functional-struct-update-respects-privacy.stderr
Merge commit '9e3cd88718cd1912a515d26dbd9c4019fd5a9577' into clippyup
[rust.git] / src / test / ui / functional-struct-update / functional-struct-update-respects-privacy.stderr
1 error[E0451]: field `secret_uid` of struct `S` is private
2   --> $DIR/functional-struct-update-respects-privacy.rs:28:49
3    |
4 LL |     let s_2 = foo::S { b: format!("ess two"), ..s_1 }; // FRU ...
5    |                                                 ^^^ field `secret_uid` is private
6
7 error: aborting due to previous error
8
9 For more information about this error, try `rustc --explain E0451`.