summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/export-tag-variant.stderr
blob: f73bd454d35922495ee755c3d999e1ce1acc3a81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0603]: enum `Y` is private
  --> $DIR/export-tag-variant.rs:7:26
   |
LL | fn main() { let z = foo::Y::Y1; }
   |                          ^ private enum
   |
note: the enum `Y` is defined here
  --> $DIR/export-tag-variant.rs:4:5
   |
LL |     enum Y { Y1 }
   |     ^^^^^^

error: aborting due to previous error

For more information about this error, try `rustc --explain E0603`.