about summary refs log tree commit diff
path: root/tests/ui/structs/struct-variant-privacy.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/structs/struct-variant-privacy.stderr')
-rw-r--r--tests/ui/structs/struct-variant-privacy.stderr27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/ui/structs/struct-variant-privacy.stderr b/tests/ui/structs/struct-variant-privacy.stderr
new file mode 100644
index 00000000000..eafd26c716f
--- /dev/null
+++ b/tests/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`.