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