1error[E0603]: trait `Bar` is private
2  --> $DIR/privacy-ufcs.rs:12:20
3   |
4LL |     <i32 as ::foo::Bar>::baz();
5   |                    ^^^ private trait
6   |
7note: the trait `Bar` is defined here
8  --> $DIR/privacy-ufcs.rs:4:5
9   |
10LL |     trait Bar {
11   |     ^^^^^^^^^
12
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0603`.
16