summaryrefslogtreecommitdiffstats
path: root/src/test/ui/privacy/private-method-inherited.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/privacy/private-method-inherited.stderr')
-rw-r--r--src/test/ui/privacy/private-method-inherited.stderr12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/ui/privacy/private-method-inherited.stderr b/src/test/ui/privacy/private-method-inherited.stderr
new file mode 100644
index 000000000..011a7fee4
--- /dev/null
+++ b/src/test/ui/privacy/private-method-inherited.stderr
@@ -0,0 +1,12 @@
+error[E0624]: associated function `f` is private
+ --> $DIR/private-method-inherited.rs:13:7
+ |
+LL | fn f(self) {}
+ | ---------- private associated function defined here
+...
+LL | x.f();
+ | ^ private associated function
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0624`.