]> git.lizzy.rs Git - rust.git/blob - src/test/ui/privacy/privacy-in-paths.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / privacy / privacy-in-paths.stderr
1 error[E0603]: module `bar` is private
2   --> $DIR/privacy-in-paths.rs:34:9
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:35:9
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:36:9
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`.