From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/issues/issue-3763.stderr | 40 ++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/test/ui/issues/issue-3763.stderr (limited to 'src/test/ui/issues/issue-3763.stderr') diff --git a/src/test/ui/issues/issue-3763.stderr b/src/test/ui/issues/issue-3763.stderr new file mode 100644 index 000000000..6f4567546 --- /dev/null +++ b/src/test/ui/issues/issue-3763.stderr @@ -0,0 +1,40 @@ +error[E0616]: field `priv_field` of struct `MyStruct` is private + --> $DIR/issue-3763.rs:18:32 + | +LL | let _woohoo = (&my_struct).priv_field; + | ^^^^^^^^^^ private field + +error[E0616]: field `priv_field` of struct `MyStruct` is private + --> $DIR/issue-3763.rs:21:41 + | +LL | let _woohoo = (Box::new(my_struct)).priv_field; + | ^^^^^^^^^^ private field + +error[E0624]: associated function `happyfun` is private + --> $DIR/issue-3763.rs:24:18 + | +LL | fn happyfun(&self) {} + | ------------------ private associated function defined here +... +LL | (&my_struct).happyfun(); + | ^^^^^^^^ private associated function + +error[E0624]: associated function `happyfun` is private + --> $DIR/issue-3763.rs:26:27 + | +LL | fn happyfun(&self) {} + | ------------------ private associated function defined here +... +LL | (Box::new(my_struct)).happyfun(); + | ^^^^^^^^ private associated function + +error[E0616]: field `priv_field` of struct `MyStruct` is private + --> $DIR/issue-3763.rs:27:26 + | +LL | let nope = my_struct.priv_field; + | ^^^^^^^^^^ private field + +error: aborting due to 5 previous errors + +Some errors have detailed explanations: E0616, E0624. +For more information about an error, try `rustc --explain E0616`. -- cgit v1.2.3