]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-11680.stderr
New upstream version 1.60.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-11680.stderr
1 error[E0603]: enum `Foo` is private
2 --> $DIR/issue-11680.rs:6:21
3 |
4 LL | let _b = other::Foo::Bar(1);
5 | ^^^ private enum
6 |
7 note: the enum `Foo` is defined here
8 --> $DIR/auxiliary/issue-11680.rs:1:1
9 |
10 LL | enum Foo {
11 | ^^^^^^^^
12
13 error[E0603]: enum `Foo` is private
14 --> $DIR/issue-11680.rs:9:27
15 |
16 LL | let _b = other::test::Foo::Bar(1);
17 | ^^^ private enum
18 |
19 note: the enum `Foo` is defined here
20 --> $DIR/auxiliary/issue-11680.rs:6:5
21 |
22 LL | enum Foo {
23 | ^^^^^^^^
24
25 error: aborting due to 2 previous errors
26
27 For more information about this error, try `rustc --explain E0603`.