summaryrefslogtreecommitdiffstats
path: root/src/test/ui/structs/struct-variant-privacy.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/structs/struct-variant-privacy.stderr')
-rw-r--r--src/test/ui/structs/struct-variant-privacy.stderr27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/test/ui/structs/struct-variant-privacy.stderr b/src/test/ui/structs/struct-variant-privacy.stderr
new file mode 100644
index 000000000..eafd26c71
--- /dev/null
+++ b/src/test/ui/structs/struct-variant-privacy.stderr
@@ -0,0 +1,27 @@
+error[E0603]: enum `Bar` is private
+ --> $DIR/struct-variant-privacy.rs:7:14
+ |
+LL | fn f(b: foo::Bar) {
+ | ^^^ private enum
+ |
+note: the enum `Bar` is defined here
+ --> $DIR/struct-variant-privacy.rs:2:5
+ |
+LL | enum Bar {
+ | ^^^^^^^^
+
+error[E0603]: enum `Bar` is private
+ --> $DIR/struct-variant-privacy.rs:10:14
+ |
+LL | foo::Bar::Baz { a: _a } => {}
+ | ^^^ private enum
+ |
+note: the enum `Bar` is defined here
+ --> $DIR/struct-variant-privacy.rs:2:5
+ |
+LL | enum Bar {
+ | ^^^^^^^^
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0603`.