]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-17718-const-privacy.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / issues / issue-17718-const-privacy.stderr
CommitLineData
b7449926 1error[E0603]: constant `B` is private
0731742a 2 --> $DIR/issue-17718-const-privacy.rs:5:8
b7449926 3 |
532ac7d7 4LL | use a::B;
ba9703b0 5 | ^ private constant
dfeec247
XL
6 |
7note: the constant `B` is defined here
8 --> $DIR/issue-17718-const-privacy.rs:13:5
9 |
10LL | const B: usize = 3;
11 | ^^^^^^^^^^^^^^^^^^^
b7449926
XL
12
13error[E0603]: constant `BAR` is private
0731742a 14 --> $DIR/issue-17718-const-privacy.rs:8:5
b7449926 15 |
532ac7d7 16LL | BAR,
ba9703b0 17 | ^^^ private constant
dfeec247
XL
18 |
19note: the constant `BAR` is defined here
20 --> $DIR/auxiliary/issue-17718-const-privacy.rs:4:1
21 |
22LL | const BAR: usize = 3;
23 | ^^^^^^^^^^^^^^^^^^^^^
b7449926
XL
24
25error: aborting due to 2 previous errors
26
27For more information about this error, try `rustc --explain E0603`.