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