]> git.proxmox.com Git - rustc.git/blob - src/test/ui/privacy/privacy-ufcs.stderr
New upstream version 1.44.1+dfsg1
[rustc.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`.