]> git.proxmox.com Git - rustc.git/blob - src/test/ui/shadowed/shadowed-use-visibility.stderr
New upstream version 1.35.0+dfsg1
[rustc.git] / src / test / ui / shadowed / shadowed-use-visibility.stderr
1 error[E0603]: module `bar` is private
2 --> $DIR/shadowed-use-visibility.rs:9:14
3 |
4 LL | use foo::bar::f as g;
5 | ^^^
6
7 error[E0603]: module `f` is private
8 --> $DIR/shadowed-use-visibility.rs:15:10
9 |
10 LL | use bar::f::f;
11 | ^
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0603`.