summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-3763.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /tests/ui/issues/issue-3763.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/issues/issue-3763.stderr')
-rw-r--r--tests/ui/issues/issue-3763.stderr40
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-3763.stderr b/tests/ui/issues/issue-3763.stderr
new file mode 100644
index 000000000..6f4567546
--- /dev/null
+++ b/tests/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`.