]> git.lizzy.rs Git - rust.git/blob - src/test/ui/privacy/privacy-in-paths.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / privacy / privacy-in-paths.stderr
1 error[E0603]: module `bar` is private
2   --> $DIR/privacy-in-paths.rs:24:16
3    |
4 LL |         ::foo::bar::baz::f(); //~ERROR module `bar` is private
5    |                ^^^
6
7 error[E0603]: module `bar` is private
8   --> $DIR/privacy-in-paths.rs:25:16
9    |
10 LL |         ::foo::bar::S::f(); //~ERROR module `bar` is private
11    |                ^^^
12
13 error[E0603]: trait `T` is private
14   --> $DIR/privacy-in-paths.rs:26:23
15    |
16 LL |         <() as ::foo::T>::Assoc::f(); //~ERROR trait `T` is private
17    |                       ^
18
19 error: aborting due to 3 previous errors
20
21 For more information about this error, try `rustc --explain E0603`.