]> git.proxmox.com Git - rustc.git/blame - src/test/ui/hygiene/privacy-early.stderr
New upstream version 1.43.0+dfsg1
[rustc.git] / src / test / ui / hygiene / privacy-early.stderr
CommitLineData
416331ca
XL
1error[E0364]: `f` is private, and cannot be re-exported
2 --> $DIR/privacy-early.rs:10:13
3 |
4LL | use f as g;
5 | ^^^^^^
6...
7LL | foo::m!();
8 | ---------- in this macro invocation
9 |
10note: consider marking `f` as `pub` in the imported module
11 --> $DIR/privacy-early.rs:10:13
12 |
13LL | use f as g;
14 | ^^^^^^
15...
16LL | foo::m!();
17 | ---------- in this macro invocation
74b04a01 18 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
416331ca
XL
19
20error: aborting due to previous error
21
22For more information about this error, try `rustc --explain E0364`.